MailMessage.To 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取包含此电子邮件收件人的地址集合。
public:
property System::Net::Mail::MailAddressCollection ^ To { System::Net::Mail::MailAddressCollection ^ get(); };
public System.Net.Mail.MailAddressCollection To { get; }
member this.To : System.Net.Mail.MailAddressCollection
Public ReadOnly Property To As MailAddressCollection
属性值
可写的 MailAddressCollection 对象。
示例
下面的代码示例演示如何设置 To 属性。
static void CreateTestMessage4( String^ server )
{
MailAddress^ from = gcnew MailAddress( L"ben@contoso.com" );
MailAddress^ to = gcnew MailAddress( L"Jane@contoso.com" );
MailMessage^ message = gcnew MailMessage( from,to );
message->Subject = L"Using the SmtpClient class.";
message->Body = L"Using this feature, you can send an email message from an application very easily.";
SmtpClient^ client = gcnew SmtpClient( server );
Console::WriteLine( L"Sending an email message to {0} by using SMTP host {1} port {2}.", to, client->Host, client->Port );
client->Send( message );
client->~SmtpClient();
}
public static void CreateTestMessage4(string server)
{
MailAddress from = new MailAddress("ben@contoso.com");
MailAddress to = new MailAddress("Jane@contoso.com");
MailMessage message = new MailMessage(from, to);
message.Subject = "Using the SmtpClient class.";
message.Body = @"Using this feature, you can send an email message from an application very easily.";
SmtpClient client = new SmtpClient(server);
Console.WriteLine("Sending an email message to {0} by using SMTP host {1} port {2}.",
to.ToString(), client.Host, client.Port);
try
{
client.Send(message);
}
catch (Exception ex)
{
Console.WriteLine("Exception caught in CreateTestMessage4(): {0}",
ex.ToString());
}
}
Public Shared Sub CreateTestMessage4(ByVal server As String)
Dim from As MailAddress = New MailAddress("ben@contoso.com")
Dim [to] As MailAddress = New MailAddress("Jane@contoso.com")
Dim message As MailMessage = New MailMessage(from, [to])
message.Subject = "Using the SmtpClient class."
message.Body = "Using this feature, you can send an email message from an application very easily."
Dim client As SmtpClient = New SmtpClient(server)
Console.WriteLine("Sending an email message to {0} by using SMTP host {1} port {2}.", [to].ToString(), client.Host, client.Port)
Try
client.Send(message)
Catch ex As Exception
Console.WriteLine("Exception caught in CreateTestMessage4(): {0}", ex.ToString())
End Try
End Sub
注解
属性 To 用于指定电子邮件的“到”行上的地址。 若要将收件人添加到电子邮件中,请 MailAddress 为收件人的地址创建 ,然后将该对象添加到此属性返回的集合中。