MailMessage.To Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan kumpulan alamat yang berisi penerima pesan email ini.
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
Nilai Properti
Objek bisa-tulis MailAddressCollection .
Contoh
Contoh kode berikut menunjukkan pengaturan To properti .
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
Keterangan
Properti To digunakan untuk menunjuk alamat pada baris Kepada dari pesan email. Untuk menambahkan penerima ke pesan email, buat MailAddress untuk alamat penerima, lalu tambahkan objek tersebut ke koleksi yang dikembalikan oleh properti ini.