SendMail

<< Click to Display Table of Contents >>

 

SendMail

SendMail(Users, Subject, Message, Callback)

Sends an e-mail. The Users parameter is the name of the e-mail's recipient. If this e-mail must be sent to more than one user, separate their names with semicolons. The Subject parameter is the e-mail's subject. The Message parameter is the e-mail's message. The Callback parameter is a function that receives the asynchronous return of this operation. Example of use:

SendMail("user1;user2",
  "Subject",
  "Message",
  function(er) {
  }
);

Was this page useful?