DevOps
SBM에서 AppScript를 이용하여 임의의 사용자에게 이메일 보내는 방법
nabiro@gmail.com
2014. 1. 8. 16:19
*
* 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(
"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