Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
The proxy class for mail services exposed by ColdFusion.
public var attachments:Array
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
public var bcc:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Addresses to which to copy the message, without listing them in the message header.
To specify multiple addresses, separate the addresses with commas.
public var cc:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Addresses to which to copy the message.
To specify multiple addresses, separate the address with commas.
public var charset:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Character encoding of the mail message, including the headers.
The following list includes commonly used values:
utf-8
iso-8859-1
windows-1252
us-ascii
shift_jis
iso-2022-jp
euc-jp
euc-kr
big5
hz-gb-2312
euc-cn
utf-16
The default value is utf-8.
public var content:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
public var failTo:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Address to which mailing systems should send delivery failure notifications.
Sets the mail envelope reverse-path value.
public var from:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
E-mail message sender:
- A static string; for example,
"support@example.com"
- A variable; for example,
"#GetUser.EMailAddress#"
public var mailerId:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Mailer ID to be passed in X-Mailer SMTP header,
which identifies the mailer application.
public var mailParts:Array
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Specifies one part of a multipart e-mail message.
Can only be used in the cfmail
tag.
public var mimeAttach:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Path of the on-disk or in-memory file to attach to message.
public var password:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
A password to send to SMTP servers that require authentication.
public var port:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
TCP/IP port on which SMTP server listens for requests (normally 25).
public var priority:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
The message priority level.
Can be one of the following values:
- An integer in the range 1-5; 1 represents the highest priority.
- One of the following string values, which correspond to the numeric
values:
highest
or urgent
, high
,
normal
, low
, and lowest
or
non-urgent
.
public var replyTo:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Addresses to which the recipient is directed to send replies.
public var server:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
SMTP server address, or (Enterprise edition only) a comma-delimited list
of server addresses, to use for sending messages.
public var subject:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Message subject. Can be dynamically generated.
For example, to send messages that give customers status updates:
"StatusofOrderNumber#Order_ID#"
.
public var timeout:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Number of seconds to wait before timing out connection to SMTP server.
public var to:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Message recipient e-mail addresses:
- Static address, for example,
"support@example.com"
- Variable that contains an address, for example,
"#Form.Email#"
- Name of a query column that contains an address,
for example,
"#EMail#"
. An e-mail message is sent for each returned row.
public var type:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
MIME type of the message.
Can be a valid MIME media type or one of the following:
text
: specifies text/plain type.plain
: specifies text/plain type.html
: specifies text/html type.
public var userName:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
A user name to send to SMTP servers that require authentication.
public var useSSL:Boolean
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Whether to use Secure Sockets Layer.
public var useTLS:Boolean
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Whether to use Transport Level Security.
public var wrapText:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
The maximum line length, in characters of the mail text.
public function Mail()
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.5 |
Creates an instance of the Mail
class.
public function execute():void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Sends the information to the ColdFusion service based on the action and attributes that
the user sets.
© 2009 Adobe Systems Incorporated. All rights reserved.
Fri Aug 14 2009, 04:09 PM +05:30