MailMessage.To Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene la raccolta di indirizzi contenente i destinatari di questo messaggio di posta elettronica.
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
Valore della proprietà
Oggetto MailAddressCollection scrivibile.
Esempio
Nell'esempio di codice seguente viene illustrata l'impostazione della To proprietà .
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
Commenti
La To proprietà viene utilizzata per designare gli indirizzi nella riga A di un messaggio di posta elettronica. Per aggiungere un destinatario a un messaggio di posta elettronica, creare un MailAddress oggetto per l'indirizzo del destinatario e quindi aggiungerlo all'insieme restituito da questa proprietà.