Class MapiMailMessage
Represents an email message to be sent through MAPI.
public class MapiMailMessage
- Inheritance
-
MapiMailMessage
- Inherited Members
- Extension Methods
Constructors
MapiMailMessage()
Creates a blank mail message.
public MapiMailMessage()
MapiMailMessage(string)
Creates a new mail message with the specified subject.
public MapiMailMessage(string subject)
Parameters
subject
string
MapiMailMessage(string, string)
Creates a new mail message with the specified subject and body.
public MapiMailMessage(string subject, string body)
Parameters
Properties
Body
Gets or sets the body of this mail message.
public string Body { get; set; }
Property Value
Files
Gets the file list for this mail message.
public ArrayList Files { get; }
Property Value
Recipients
Gets the recipient list for this mail message.
public RecipientCollection Recipients { get; }
Property Value
Subject
Gets or sets the subject of this mail message.
public string Subject { get; set; }
Property Value
Methods
ShowDialog()
Displays the mail message dialog asynchronously.
public void ShowDialog()