Chapter number SendMail.send() (Method) Sends the message encapsulated (Web host server)
Chapter number SendMail.send() (Method) Sends the message encapsulated by this object. Availability: JavaScript 1.2 Netscape Enterprise Server version 3.0 JavaScript syntax: NES mySendMail.send() This connects to the sendmailprocess in the server and dispatches the message. There is an implication here that because it uses sendmail, then the server can only run on platforms that support sendmail. That further implies the platform is a Unix system, although sendmail is open source and may be deployed on non-Unix platforms. If sendmail is not available the results of calling this method are uncertain. SendMail.Smtpserver (Property) Defines the name of the SMTP server to which we shall connect and request that our message be sent. Availability: JavaScript 1.2 Netscape Enterprise Server version 3.0 Property/method value type: String primitive JavaScript syntax: NES mySendMail.Smptpserver You will need to consult your system administrator about this value. It is impossible to state with any certainty what value you should assign to this property there are so many possible ways to configure a mail server and deploy it. It may or may not be on the same machine as your web server. SendMail.Subject (Property) Defines the subject heading for the message. Availability: JavaScript 1.2 Netscape Enterprise Server version 3.0 Property/method value type: String primitive JavaScript syntax: NES mySendMail.Subject This property contains the value that is transmitted in the Subject: header of the outgoing e-mail. The value assigned to this property should be a 7 bit ASCII string. 1916