DataWeb
Search Results for

    Show / Hide Table of Contents

    Class EmailMessage

    Represents an email message.

    Inheritance
    object
    EmailMessage
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: DataWeb.Email
    Assembly: DataWeb.Core.dll
    Syntax
    public class EmailMessage

    Properties

    Attachments

    Gets or sets the list of EmailMessage.Attachment to be included in the message.

    Declaration
    public List<EmailMessage.Attachment> Attachments { get; set; }
    Property Value
    Type Description
    List<EmailMessage.Attachment>

    BccAddresses

    Gets or sets the list of EmailMessage.EmailAddress that will be blind copied on the message.

    Declaration
    public List<EmailMessage.EmailAddress> BccAddresses { get; set; }
    Property Value
    Type Description
    List<EmailMessage.EmailAddress>

    BodyHtml

    Gets or sets the HTML body of the message.

    Declaration
    public string BodyHtml { get; set; }
    Property Value
    Type Description
    string

    BodyText

    Gets or sets the plain text body of the message.

    Declaration
    public string BodyText { get; set; }
    Property Value
    Type Description
    string

    CcAddresses

    Gets or sets the list of EmailMessage.EmailAddress that will be copied on the message.

    Declaration
    public List<EmailMessage.EmailAddress> CcAddresses { get; set; }
    Property Value
    Type Description
    List<EmailMessage.EmailAddress>

    FromAddress

    Gets or sets the EmailMessage.EmailAddress of the sender.

    Declaration
    public EmailMessage.EmailAddress FromAddress { get; set; }
    Property Value
    Type Description
    EmailMessage.EmailAddress

    GroupId

    Gets or sets the group Id associated with the message.

    Declaration
    public string GroupId { get; set; }
    Property Value
    Type Description
    string

    Subject

    Gets or sets the subject of the message.

    Declaration
    public string Subject { get; set; }
    Property Value
    Type Description
    string

    ToAddresses

    Gets or sets the list of EmailMessage.EmailAddress of the message recipients.

    Declaration
    public List<EmailMessage.EmailAddress> ToAddresses { get; set; }
    Property Value
    Type Description
    List<EmailMessage.EmailAddress>
    In this article
    Back to top Generated by DocFX