Table of Contents

Class MapiMailMessage

Namespace
Lers.Common
Assembly
Lers.UI.dll

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

subject string
body string

Properties

Body

Gets or sets the body of this mail message.

public string Body { get; set; }

Property Value

string

Files

Gets the file list for this mail message.

public ArrayList Files { get; }

Property Value

ArrayList

Recipients

Gets the recipient list for this mail message.

public RecipientCollection Recipients { get; }

Property Value

RecipientCollection

Subject

Gets or sets the subject of this mail message.

public string Subject { get; set; }

Property Value

string

Methods

ShowDialog()

Displays the mail message dialog asynchronously.

public void ShowDialog()