EmailJob Object
The EmailJob object permits sending emails.
Members Table
The following table lists the members provided by the EmailJob object.
Remarks
This object is returned by the CreateJob method.
Use the EmailJob object to send emails.
Note that the path of a file using SiteKiosk objects must be allowed in the
SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
if it is not a browser skin file.
Examples
The following example sends an email to a specified address.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mymail = SiteKiosk.Email.CreateJob(false);
mymail.POPServer = "mypopserver.com";
mymail.POPPort = 110;
mymail.Username = "myusername";
mymail.Password = "mypassword";
mymail.SMTPServer = "mysmtpserver.com";
mymail.SMTPPort = 25;
mymail.Authentication = 2;
mymail.SetSender("me@myserver.com", "My name");
mymail.AddRecipient("recipient@server.com");
mymail.Subject = "This is the subject.";
mymail.PlainBody = "This is the content.";
mymail.Send(0, false, true);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top