Class EmailDraft
public class EmailDraft
- Inheritance
-
EmailDraft
- Inherited Members
- Extension Methods
Remarks
This interface is used to represent an email message that has not yet been sent. It corresponds to Draft items in Gmail or Outook.
Properties
AutoBccSubscribers
public bool AutoBccSubscribers { get; set; }
Property Value
ContentAttachments
public List<string> ContentAttachments { get; set; }
Property Value
ContentBody
public MultilingualString ContentBody { get; set; }
Property Value
ContentCompetencies
public Dictionary<Guid, Guid[]> ContentCompetencies { get; set; }
Property Value
- Dictionary<Guid, Guid[]>
ContentCredentials
public Dictionary<Guid, Guid[]> ContentCredentials { get; set; }
Property Value
- Dictionary<Guid, Guid[]>
ContentPriority
public string ContentPriority { get; set; }
Property Value
ContentSubject
public MultilingualString ContentSubject { get; set; }
Property Value
ContentVariables
public Dictionary<string, string> ContentVariables { get; set; }
Property Value
EventIdentifier
public Guid? EventIdentifier { get; set; }
Property Value
- Guid?
IgnoreSubscribers
public bool IgnoreSubscribers { get; set; }
Property Value
IsDisabled
public bool IsDisabled { get; set; }
Property Value
MailoutCancelled
public DateTimeOffset? MailoutCancelled { get; set; }
Property Value
MailoutCompleted
public DateTimeOffset? MailoutCompleted { get; set; }
Property Value
MailoutErrorReason
public string MailoutErrorReason { get; set; }
Property Value
MailoutIdentifier
public Guid MailoutIdentifier { get; set; }
Property Value
MailoutScheduled
public DateTimeOffset? MailoutScheduled { get; set; }
Property Value
MailoutStatus
public string MailoutStatus { get; set; }
Property Value
MailoutStatusCode
public string MailoutStatusCode { get; set; }
Property Value
MailoutSucceeded
public bool MailoutSucceeded { get; set; }
Property Value
MessageIdentifier
public Guid? MessageIdentifier { get; set; }
Property Value
- Guid?
OrganizationIdentifier
public Guid OrganizationIdentifier { get; set; }
Property Value
RecipientListBcc
public Dictionary<Guid, string> RecipientListBcc { get; set; }
Property Value
RecipientListCc
public Dictionary<Guid, string> RecipientListCc { get; set; }
Property Value
RecipientListTo
public Dictionary<Guid, string> RecipientListTo { get; set; }
Property Value
Recipients
public EmailAddressList Recipients { get; set; }
Property Value
SenderEmail
public string SenderEmail { get; set; }
Property Value
SenderEnabled
public bool SenderEnabled { get; set; }
Property Value
SenderIdentifier
public Guid SenderIdentifier { get; set; }
Property Value
SenderName
public string SenderName { get; set; }
Property Value
SenderStatus
public string SenderStatus { get; set; }
Property Value
SenderType
public string SenderType { get; set; }
Property Value
SurveyIdentifier
public Guid? SurveyIdentifier { get; set; }
Property Value
- Guid?
SurveyNumber
public int? SurveyNumber { get; set; }
Property Value
- int?
SystemMailbox
public string SystemMailbox { get; set; }
Property Value
UserIdentifier
public Guid UserIdentifier { get; set; }
Property Value
Methods
AttachFile(string)
public void AttachFile(string path)
Parameters
pathstring
Create(Guid, Guid?, Guid, bool)
public static EmailDraft Create(Guid organization, Guid? message, Guid sender, bool autoBccSubscribers)