PAGE('EMAIL_EXTENDED'…)
Creates e-mail without opening e-mail program directly. First, use this commands to create the e-mail, then open the e-mail with SEND.
PAGE('EMAIL_EXTENDED',
string EmailTo,
string EmailCC,
string EmailBCC,
string Subject,
string Body);
example:
local mail = PAGE('EMAIL_EXTENDED',
'[email protected]',
'',
'',
'This is my Subject',
'Hello World.');
