SBM에서 AppScript를 이용하여 임의의 사용자에게 이메일 보내는 방법
- DevOps
- 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
'DevOps' 카테고리의 다른 글
git config 설정과 사용예제 (0) | 2021.01.09 |
---|---|
윈도우10 운영체제에 패키지매니저인 Chocolatey 설치하기 (0) | 2021.01.05 |
ant의 sshexec를 이용하여 ssh 접속할 때 비밀번호가 틀려 잠기는 문제 해결 방법 (0) | 2013.10.31 |
Hudson에서 People 정보에 Full name이 아닌 login id 찾는 방법 (0) | 2013.10.25 |
trac 제품에 사용자 정의 필드 추가 방법 (0) | 2010.12.30 |