本文整理汇总了C#中System.Net.Mail.MailAddress类的典型用法代码示例。如果您正苦于以下问题:C# MailAddress类的具体用法?C# MailAddress怎么用?C# MailAddress使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MailAddress类属于System.Net.Mail命名空间,在下文中一共展示了MailAddress类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateCopyMessage
public static void CreateCopyMessage(string server)
{
MailAddress from = new MailAddress("ben@contoso.com", "Ben Miller");
MailAddress to = new MailAddress("jane@contoso.com", "Jane Clayton");
MailMessage message = new MailMessage(from, to);
// message.Subject = "Using the SmtpClient class.";
message.Subject = "Using the SmtpClient class.";
message.Body = @"Using this feature, you can send an email message from an application very easily.";
// Add a carbon copy recipient.
MailAddress copy = new MailAddress("Notification_List@contoso.com");
message.CC.Add(copy);
SmtpClient client = new SmtpClient(server);
// Include credentials if the server requires them.
client.Credentials = CredentialCache.DefaultNetworkCredentials;
Console.WriteLine("Sending an email message to {0} by using the SMTP host {1}.",
to.Address, client.Host);
try
{
client.Send(message);
}
catch (Exception ex)
{
Console.WriteLine("Exception caught in CreateCopyMessage(): {0}",
ex.ToString());
}
}
示例2: new MailAddress
//引入命名空间
using System;
using System.Net;
using System.Net.Mail;
class MainClass
{
public static void Main(string[] args)
{
SmtpClient client = new SmtpClient("mail.somecompany.com", 25);
client.Credentials =new NetworkCredential("user@somecompany.com", "password");
using (MailMessage msg = new MailMessage())
{
msg.From = new MailAddress("author@aaa.com");
msg.Subject = "HI";
msg.Body = "A message";
msg.Attachments.Add(new Attachment("c:\\test.txt", "text/plain"));
msg.Attachments.Add(new Attachment("C:\\test.exe", "application/octet-stream"));
msg.To.Add(new MailAddress("message to address"));
client.Send(msg);
}
}
}