邮件发送
效果 查看收件人的smtp通讯协议 code using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Mail; using System.Net; using System.IO; namespace EmailSendConsole { class Program { static void Main(string[] args) { System.Console.Title = "邮件发送 http://www.cnblogs.com/suntanyong88/"; System.Console.WriteLine("请输入参数选择您要操作状态。"); System.Console.WriteLine("输入1 单发邮件"); System.Console.WriteLine("输入2 群发邮件"); System.Console.WriteLine("输入3 群发邮件并附件文件"); string ctype = System.Console.ReadLine(); if (ctype == "1") { //用 MailAddress 发送方法1 CreateCopyMessage("smtp.exmail.qq.com")