SBM에서 AppScript를 이용하여 임의의 사용자에게 이메일 보내는 방법

*

* 20140108-1615
* nabiro, sbm, teamtrack, script, teamscript, appscript, email, 이메일
* 출처일자: 2014-01-08 마지막 접속
*
 
Dim tableId, myRecord, myLong
REM Create a Notifications Message record
tableId = Ext.TableId("TS_NOTIFICATIONMESSAGES")
Set myRecord = Ext.CreateAppRecord (tableId)
myRecord.SetFieldValue( "address", "toaddress@gmail.com" )
myRecord.SetFieldValue( "subject", "Test Message Subject Goes Here" )
myRecord.SetFieldValue( "content", "The body of the message goes here." )
myLong = myRecord.Add()
If myLong = 0 Then
    Call Ext.LogErrorMsg("Error adding message to notifications table.")
End If

댓글

Designed by JB FACTORY