<< Click to Display Table of Contents >>

OZUserActionCommand > Mail

OZUserActionCommandのtype中MailはOZメールで転送する時に発生し、返される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);

       ...

   }

}

...