using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using ActiveUp.Net.Mail;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Send(); } public static void Send() { Message mail = new Message(); mail.From = new Address("from"); mail.Charset = "utf-8"; mail.ContentTransferEncoding = ContentTransferEncoding.Base64; mail.Date = System.DateTime.UtcNow; List<string> toList = new List<string>(); toList.Add("tomail"); //接收地址 foreach (var to in toList) { mail.To.Add(to); } //标题 同时设置编码为utf-8 mail.Subject = Codec.RFC2047Encode("test使用様", Encoding.UTF8.BodyName); //邮件内容 mail.BodyHtml.Charset = "utf-8"; string body="As promised, the requested document.<br/>RegardsJohn"; mail.BodyHtml.Text =body; try { SmtpClient.SendSsl(mail, mailhost,userid, mailpass, SaslMechanism.Login); } catch (Exception) { throw; } } }}
转载于:https://www.cnblogs.com/c-x-a/p/5531926.html