Search Results for

    Show / Hide Table of Contents

    Class MessageOptions

    The options for a message

    Inheritance
    object
    MessageOptions
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: PnP.Core.Model.Security
    Assembly: PnP.Core.dll
    Syntax
    public class MessageOptions

    Properties

    Attachments

    Attachments of the mail message

    Declaration
    public List<MessageAttachmentOptions> Attachments { get; set; }
    Property Value
    List<MessageAttachmentOptions>

    BccRecipients

    The Bcc: recipients for the message.

    Declaration
    public List<RecipientOptions> BccRecipients { get; set; }
    Property Value
    List<RecipientOptions>

    Body

    The body of the message. It can be in HTML or text format.

    Declaration
    public string Body { get; set; }
    Property Value
    string

    BodyContentType

    The type of the content. The possible values are text and html.

    Declaration
    public MessageBodyContentType BodyContentType { get; set; }
    Property Value
    MessageBodyContentType

    CcRecipients

    The Cc: recipients for the message.

    Declaration
    public List<RecipientOptions> CcRecipients { get; set; }
    Property Value
    List<RecipientOptions>

    Importance

    The importance of the message. The possible values are: low, normal, and high.

    Declaration
    public MessageImportance Importance { get; set; }
    Property Value
    MessageImportance

    ReplyTo

    The email addresses to use when replying.

    Declaration
    public List<RecipientOptions> ReplyTo { get; set; }
    Property Value
    List<RecipientOptions>

    Subject

    The subject of the message.

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

    ToRecipients

    The To: recipients for the message.

    Declaration
    public List<RecipientOptions> ToRecipients { get; set; }
    Property Value
    List<RecipientOptions>

    Back to top PnP Core SDK
    Generated by DocFX with Material UI
    spacer