Class MailOptions
Options containing the message and whether to save the mail to the sent items of the user or not.
Inheritance
System.Object
MailOptions
Namespace: PnP.Core.Model.Security
Assembly: PnP.Core.dll
Syntax
public class MailOptions : object
Properties
Message
The message to send. Required.
Declaration
public MessageOptions Message { get; set; }
Property Value
MessageOptions
|
SaveToSentItems
Indicates whether to save the message in Sent Items. Specify it only if the parameter is false; default is true. Optional.
Declaration
public bool SaveToSentItems { get; set; }
Property Value
System.Boolean
|