Class EMailEnvelope
Limited information about one e-mail.
Carrier object for EMailEnvelope. Services for the EMailEnvelope Carrier is available from the IEMailAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class EMailEnvelope : Carrier
Constructors
EMailEnvelope()
Default constructor
Declaration
public EMailEnvelope()
See Also
Properties
EMailSOInfo
Glue between SuperOffice data and an e-mail.
Declaration
public virtual EMailSOInfo EMailSOInfo { get; set; }
Property Value
Type | Description |
---|---|
EMailSOInfo |
See Also
Flags
Flag status of this mail (unread, replied, deleted )
Declaration
public virtual EMailFlags Flags { get; set; }
Property Value
Type | Description |
---|---|
EMailFlags |
See Also
From
Who did the e-mail originate from
Declaration
public virtual EMailAddress From { get; set; }
Property Value
Type | Description |
---|---|
EMailAddress |
See Also
MessageId
Unique id of e-mails
Declaration
public virtual string MessageId { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Priority
Importance of the e-mail
Declaration
public virtual EMailPriority Priority { get; set; }
Property Value
Type | Description |
---|---|
EMailPriority |
See Also
Sent
When was the e-mail sent
Declaration
public virtual DateTime Sent { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
ServerId
Unique id for the e-mail on the server
Declaration
public virtual int ServerId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
Size
Total size of the e-mail
Declaration
public virtual int Size { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
Subject
Subject of the e-mail
Declaration
public virtual string Subject { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
To
To recipients of e-mail
Declaration
public virtual EMailAddress[] To { get; set; }
Property Value
Type | Description |
---|---|
EMailAddress[] |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
See Also
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |