Class PreviewMailing
A shipment message with information about the recipient it was sent to.
Carrier object for PreviewMailing. Services for the PreviewMailing Carrier is available from the IMarketingAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class PreviewMailing : Carrier
Constructors
PreviewMailing()
Default constructor
Declaration
public PreviewMailing()
See Also
Properties
Configuration
This field indicates what kind of shipment this is.
Declaration
public virtual int Configuration { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
ContactId
Owning contact ID
Declaration
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
ContactName
Contact name
Declaration
public virtual string ContactName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
DocumentMessageId
If a document was used as the message this is the document ID.
Declaration
public virtual int DocumentMessageId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
FromAddress
Email address to put in the From header of the messages
Declaration
public virtual string FromAddress { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
LinkClicks
The number of links clicked in the mailing.
Declaration
public virtual int LinkClicks { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
MessageId
Primary key
Declaration
public virtual int MessageId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
MessageSubject
The mail subject field of the message
Declaration
public virtual string MessageSubject { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Opened
Date/time the customer read the mailing.
Declaration
public virtual DateTime Opened { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
PersonFullName
Get the persons full name (internal name used in clients for employees).
Declaration
public virtual string PersonFullName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
PersonId
Primary key
Declaration
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
SendingTime
Estimated or actual sent time (depends on status)
Declaration
public virtual DateTime SendingTime { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
ShipmentDescription
Describes the shipment
Declaration
public virtual string ShipmentDescription { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
ShipmentId
Primary key
Declaration
public virtual int ShipmentId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
ShipmentType
The list item
Declaration
public virtual string ShipmentType { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Status
Status for sending to this particular recipient
Declaration
public virtual ShipmentAddrStatus Status { get; set; }
Property Value
Type | Description |
---|---|
ShipmentAddrStatus |
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. |