MailMessage Constructor (MailAddress, MailAddress)
.NET Framework 2.0
Note: This constructor is new in the .NET Framework version 2.0.
Initializes a new instance of the MailMessage class by using the specified MailAddress class objects.
Namespace: System.Net.Mail
Assembly: System (in system.dll)
Assembly: System (in system.dll)
public MailMessage ( MailAddress from, MailAddress to )
public function MailMessage ( from : MailAddress, to : MailAddress )
Parameters
- from
A MailAddress that contains the address of the sender of the e-mail message.
- to
A MailAddress that contains the address of the recipient of the e-mail message.
The following code example demonstrates calling this constructor.
public static void CreateTestMessage3() { MailAddress to = new MailAddress("jane@contoso.com"); MailAddress from = new MailAddress("ben@contoso.com"); MailMessage message = new MailMessage(from, to); message.Subject = "Using the new SMTP client."; message.Body = @"Using this new feature, you can send an e-mail message from an application very easily."; // Use the application or machine configuration to get the // host, port, and credentials. SmtpClient client = new SmtpClient(); Console.WriteLine("Sending an e-mail message to {0} at {1} by using the SMTP host {2}.", to.User, to.Host, client.Host); client.Send(message); }
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: