Difference between revisions of "SendEmail"
Cg huyphong (talk | contribs) (→sendEmail) |
|||
Line 1: | Line 1: | ||
[[Category:Email_and_SMS_Functions]] | [[Category:Email_and_SMS_Functions]] | ||
− | |||
− | + | ==sendEmail== | |
− | Sends an email | + | Sends an email. '''This function requires the Qnaire context'''. |
''(Note: all emails can be tracked in the communicator module)'' | ''(Note: all emails can be tracked in the communicator module)'' | ||
− | + | ==Syntax== | |
sendEmail(''email, alias, subject, body[,fromemail]'') | sendEmail(''email, alias, subject, body[,fromemail]'') | ||
− | + | ==Arguments== | |
''email:'' Is an expression of string type. It is the receiver’s email address. | ''email:'' Is an expression of string type. It is the receiver’s email address. | ||
Line 24: | Line 23: | ||
''fromemail:'' Is an expression of string type. This is the From email’s address. | ''fromemail:'' Is an expression of string type. This is the From email’s address. | ||
− | + | ==Return type== | |
empty | empty | ||
− | + | ==Examples== | |
sendEmail(“some_email@somemail.com”, "somebody", "test", "This is a test"); | sendEmail(“some_email@somemail.com”, "somebody", "test", "This is a test"); | ||
Line 36: | Line 35: | ||
sendEmail("some_email@somemail.com", "somebody", "test", "This is a test","phong@maysunshine.vn"); | sendEmail("some_email@somemail.com", "somebody", "test", "This is a test","phong@maysunshine.vn"); | ||
− | |||
− | |||
− | |||
__NOTOC__ | __NOTOC__ | ||
− |
Revision as of 18:07, 14 September 2012
sendEmail
Sends an email. This function requires the Qnaire context.
(Note: all emails can be tracked in the communicator module)
Syntax
sendEmail(email, alias, subject, body[,fromemail])
Arguments
email: Is an expression of string type. It is the receiver’s email address.
alias: Is an expression of string type. It is the receiver’s alias name.
subject: Is an expression of string type. This is the email’s subject.
body: Is an expression of string type. This is the email’s content.
fromemail: Is an expression of string type. This is the From email’s address.
Return type
empty
Examples
sendEmail(“some_email@somemail.com”, "somebody", "test", "This is a test");
or
sendEmail("some_email@somemail.com", "somebody", "test", "This is a test","phong@maysunshine.vn");