MailMessage.BodyFormat 属性

定义

获取或设置电子邮件正文的内容类型。 建议使用的替代项: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

属性值

MailFormat

MailFormat 值之一。

示例

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

适用于