Class MailQueueItem
A simple MailQueueItem Poco
Inheritance
System.Object
MailQueueItem
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.Mailing
Assembly: Simplic.Framework.dll
Syntax
public class MailQueueItem
Properties
| Improve this Doc View SourceAttachments
A list of MailAttachment items.
Declaration
public IList<MailAttachment> Attachments { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<MailAttachment> |
Bcc
Email BCC
Declaration
public string Bcc { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Body
Email body text
Declaration
public string Body { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Cc
Email CC
Declaration
public string Cc { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CreateDateTime
Holds the value of when this item is created.
Declaration
public DateTime CreateDateTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Ident
Represents Mail Queue Item Id
Declaration
public long Ident { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
OutputDocumentId
Gets or sets the linked output document
Declaration
public Guid? OutputDocumentId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Recipients
A string of recipients seperated by ',' character.
Declaration
public string Recipients { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SendAt
Gets or sets the SendAt datetime
Declaration
public DateTime? SendAt { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Sender
Email sender
Declaration
public string Sender { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Status
Mail Queue Item Status. This status is used by another service to determine if this mail queue item should be sent or not.
Declaration
public MailQueueStatus Status { get; set; }
Property Value
Type | Description |
---|---|
MailQueueStatus |
Subject
Email subject
Declaration
public string Subject { get; set; }
Property Value
Type | Description |
---|---|
System.String |