<< Click to Display Table of Contents >>
OZUserActionCommand > Mail
OZUserActionCommand의 type 중 Mail은 오즈 메일을 전송할 때 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
bcc |
숨은 참조(string) |
cc |
참조(string) |
code |
전송 코드(string) |
contents |
내용(string) |
filename |
보고서 이름(string) |
from |
보내는 사람(string) |
sendto |
받는 사람(string) |
title |
제목(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "Mail") {
alert(MyObj.bcc);
...
}
}
...