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 전자 메일 메시지의 To 줄에서 주소를 지정하는 데 사용됩니다. 전자 메일 메시지에 받는 사람을 추가하려면 받는 사람의 주소에 대한 를 MailAddress 만든 다음 이 속성에서 반환된 컬렉션에 해당 개체를 추가합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET