MailMessage.BodyFormat Property

Definition

Gets or sets the content type of the body of the email message. Recommended alternative: System.Net.Mail.

public:
 property System::Web::Mail::MailFormat BodyFormat { System::Web::Mail::MailFormat get(); void set(System::Web::Mail::MailFormat value); };
public System.Web.Mail.MailFormat BodyFormat { get; set; }
member this.BodyFormat : System.Web.Mail.MailFormat with get, set
Public Property BodyFormat As MailFormat

Property Value

One of the MailFormat values.

Examples

MailMessage MyMessage = new MailMessage();
MyMessage.BodyFormat = MailFormat.Html;
Dim MyMessage As MailMessage = New MailMessage()
MyMessage.BodyFormat = MailFormat.Html

Applies to