【目录】 【上一页】 【下一章】 【索引】
SendMail
Sends an email message.
The To and From attributes are required. All other properties are optional.
创建源
The SendMail constructor:
new SendMail();
参数
无。
描述
Whatever properties you specify for the SendMail object are sent in the header of the mail message.
The SendMail object allows you to send either simple text-only mail messages or complex MIME-compliant mail or add attachments to your message. To send a MIME message, set the Content-Type property to the MIME type of the message.
You can use the prototype property of the SendMail object to add a property to all SendMail instances. If you do so, that addition applies to all SendMail objects running in all applications on your server, not just in the single application that made the change. This allows you to expand the capabilities of this object for your entire server.
属性概览
方法概览
示例
示例 1: The following script sends mail to vpg and gwp, copying jaym, with the specified subject and body for the message:
<server> SMName = new SendMail(); SMName.To = "[email protected], [email protected]" SMName.From = "[email protected]" SMName.Cc = "[email protected]" SMName.Subject = "The State of the Universe" SMName.Body = "The universe, contrary to what you may have heard, is in none too shabby shape. Not to worry! --me" SMName.send() </server>
示例 2: The following example sends an image in a GIF file:
sm = new SendMail(); sm.To = "satish"; sm.From = "[email protected]"; sm.Smtpserver = "fen.mcom.com"; sm["Errors-to"] = "satish"; sm["Content-type"] = "image/gif"; sm["Content-Transfer-Encoding"] = "base64"; file = new File("/u/satish/LiveWire/mail/banner.gif"); openFlag = file.open("r"); if ( openFlag ) { len = file.getLength(); str = file.read(len); sm.Body = str; } sm.send();
示例 3: The following example sends a multipart message:
sm = new SendMail(); sm.To = "[email protected], [email protected]"; sm.From = "[email protected]"; sm.Smtpserver = "fen.mcom.com"; sm.Organization = "Netscape Comm Corp"; sm["Content-type"] = "multipart/mixed; boundary=\"------------8B3F7BA67B67C1DDE6C25D04\""; file = new File("/u/satish/LiveWire/mail/mime"); openFlag = file.open("r"); if ( openFlag ) { len = file.getLength(); str = file.read(len); sm.Body = str; } sm.send();
The file mime has HTML text and an Microsoft Word document separated by the specified boundary. The resulting message appears as HTML text followed by the Microsoft Word attachment.
属性
Bcc
Comma-delimited list of recipients of the message whose names should not be visible in the message.
Body
Text of the message.
Cc
Comma-delimited list of additional recipients of the message.
Errorsto
Address to which to send errors concerning the message. Defaults to the sender's address.
From
User name of the person sending the message.
Organization
Organization information.
prototype
Represents the prototype for this class. You can use the prototype to add properties or methods to all instances of a class. For information on prototypes, see Function.prototype.
Replyto
User name to which replies to the message should be sent. Defaults to the sender's address.
Smtpserver
Mail (SMTP) server name. Defaults to the value specified through the setting in the Administration server.
Subject
Subject of the message.
To
Comma-delimited list of primary recipients of the message.
方法
errorCode
Returns an integer error code associated with sending this message.
语法
public errorCode();
返回
The possible return values and their meanings are as follows:
errorMessage
Returns a string associated with sending this message.
语法
public errorMessage();
返回
An error string.
send
Sends the mail message represented by this object.
语法
public send ();
返回
This method returns a Boolean value to indicate whether or not the mail was successfully sent. If the mail was not successfully sent, you can use the errorMessage and errorCode methods to determine the nature of the error.
This method returns a string indicating the nature of the error that occurred sending the message.
【目录】 【上一页】 【下一章】 【索引】
|