More actions
Nguyenduyan (talk | contribs) No edit summary |
Nguyenduyan (talk | contribs) No edit summary |
||
Line 27: | Line 27: | ||
Empty | Empty | ||
'''Examples''' <source lang="javascript"> | '''Examples''' | ||
<source lang="javascript"> | |||
sendMailTemplateFromResource(15546533,"[email protected]","An",1378); | sendMailTemplateFromResource(15546533,"[email protected]","An",1378); | ||
</source><br | </source> | ||
<br><source lang="javascript"> | |||
string firstName = "An"; | string firstName = "An"; | ||
string today = "2016-25-11"; | string today = "2016-25-11"; | ||
Line 38: | Line 40: | ||
}); | }); | ||
</source> '''Availability''' Version 6.0 | </source> | ||
'''Availability''' | |||
Version 6.0 | |||
[[Category:Email_and_SMS_Functions]] | [[Category:Email_and_SMS_Functions]] |
Revision as of 06:54, 25 November 2016
sendMailTemplateFromResource
send mail by an existing mail template
Syntax
sendMailTemplateFromResource(number parentResourceId, string email, string alias, number mailTemplateId [, string fromEmail ] [, all updateMail]);
Arguments
parentResourceId: Is an expression of the type number. It is Resource Id of resource that contain these mail in communication tab after sending.
email: Is an expression of the type string. It is email address of receiver.
alias: Is an expression of the type string. Alias of receiver
mailTemplateId: Is an expression of the type number. It is Id of the mail template
fromEmail: Is an expression of the type string. It is from email address.
updateMail: Is an expression of the type of any. Use to update mail when sending.
Return type
Empty
Examples
sendMailTemplateFromResource(15546533,"[email protected]","An",1378);
string firstName = "An";
string today = "2016-25-11";
sendMailTemplateFromResource(15546533,"[email protected]","An",1378,"[email protected]",function(string subject, string message ){
subject = stringReplace(subject,"[Date]",today);
message = stringReplace(message,"[firstName]",firstName);
return {subject,message};
});
Availability Version 6.0