MailMessage.BodyFormat Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.