Class MessageOptions
The options for a message
Inheritance
System.Object
MessageOptions
Namespace: PnP.Core.Model.Security
Assembly: PnP.Core.dll
Syntax
public class MessageOptions : object
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
System.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
System.String
|
ToRecipients
The To: recipients for the message.
Declaration
public List<RecipientOptions> ToRecipients { get; set; }
Property Value
List<RecipientOptions>
|