Error! No text of (Sex offenders web site) specified style in document.

Error! No text of specified style in document. SendMail object (Object/NES) An object that encapsulates an outgoing e-mail message. Availability: JavaScript 1.2 Netscape Enterprise Server version 3.0 NES mySendMail = SendMail JavaScript syntax: NES mySendMail = new SendMail() Object properties: Bcc, Body, Cc, constructor, ErrorsTo, From, Organization, prototype, ReplyTo, Smtpserver, Subject, To Object methods: errorCode(), errorMessage(), send() This provides a way for the Netscape Enterprise Server to send e-mail messages as a result of a client request. You create a new message handling object with the SendMail() constructor. Then you define where it is going to be sent, its subject matter and content by storing string values in its various properties. Finally, you transmit the message via an SMTP server with the send() method. Example code: mySendMail = new SendMail(); mySendMail.Smtpserver = “mailhost”; mySendMail.To = “someone@somewhere.com”; mySendMail.From = “me@here.com”; mySendMail.Subject = “A test message”; mySendMail.Body = “Some body text”; mySendMail.send(); See also: Netscape Enterprise Server, SendMail(), unwatch(), watch() Property JavaScript JScript NES Notes Bcc 1.2 + 3.0 + - Body 1.2 + 3.0 + - Cc 1.2 + 3.0 + - constructor 1.2 + 3.0 + - ErrorsTo 1.2 + 3.0 + - From 1.2 + 3.0 + - Organization 1.2 + 3.0 + - prototype 1.2 + 3.0 + - ReplyTo 1.2 + 3.0 + - Smtpserver 1.2 + 3.0 + - Subject 1.2 + 3.0 + - To 1.2 + 3.0 + - 1911
Note: If you are looking for reliable webhost to maintain and run your java application check Vision java hosting services

Leave a Reply