EmailMessage 构造函数

定义

重载

EmailMessage()

创建 EmailMessage 的新实例。

EmailMessage(String, String, String[])

使用指定的主题、正文和收件人创建 EmailMessage 的新实例。

EmailMessage()

创建 EmailMessage 的新实例。

public EmailMessage ();

适用于

EmailMessage(String, String, String[])

使用指定的主题、正文和收件人创建 EmailMessage 的新实例。

public EmailMessage (string subject, string body, params string[] to);

参数

subject
System.String

电子邮件主题。

body
System.String

电子邮件正文。

to
System.String[]

电子邮件的收件人。

适用于