Package | coldfusion.service |
Class | public class PopHeader |
Inheritance | PopHeader Object |
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
CFIDE.services.poprecord
The ColdFusion service returns some of the results in CFIDE.services.poprecord.
Message headers retrieved from the POP server.
popheader
contains the message header that is returned
when you use the getHeaderOnly
action of the cfpop
tag.
Property | Defined By | ||
---|---|---|---|
cc : String
Addresses to which to copy the message. | PopHeader | ||
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
date : String
Date string in the message header. | PopHeader | ||
from : String
E-mail message sender:
A static string; for example, "support@example.com"
A variable; for example, "#GetUser.EMailAddress#"
| PopHeader | ||
header : String
Mail message header. | PopHeader | ||
messageid : String
The mail header Message-ID field
| PopHeader | ||
messagenumber : String
The sequential number of the message in the POP server. | PopHeader | ||
replyto : String
Addresses to which the recipient is directed to send replies. | PopHeader | ||
subject : String
Message subject. | PopHeader | ||
to : String
Message recipient e-mail addresses:
Static address, for example, "support@example.com"
Variable that contains an address, for example, "#Form.Email#"
| PopHeader | ||
UID : String
The mail header X-UID field
| PopHeader |
Method | Defined By | ||
---|---|---|---|
Creates an instance of the PopHeader class. | PopHeader | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object |
cc | property |
public var cc:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Addresses to which to copy the message. To specify multiple addresses, separate the address with commas.
date | property |
public var date:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Date string in the message header.
from | property |
public var from:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
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#"
header | property |
public var header:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Mail message header.
messageid | property |
public var messageid:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
The mail header Message-ID field
messagenumber | property |
public var messagenumber:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
The sequential number of the message in the POP server.
replyto | property |
public var replyto:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Addresses to which the recipient is directed to send replies.
subject | property |
public var subject:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
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#"
.
to | property |
public var to:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
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#"
UID | property |
public var UID:String
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
The mail header X-UID field
PopHeader | () | Constructor |
public function PopHeader()
Language Version: | ActionScript 3.0 |
Product Version: | ColdFusion 9 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Creates an instance of the PopHeader
class.
Thu Dec 6 2018, 01:12 PM -08:00