当前位置:
首页 > Python基础教程 >
-
C#教程之C#发送邮箱
之前自己从来没有做过发送邮箱的功能,前段时间项目需要,在找了很多帖子之后,终于实现了。
之后有整理了一下,写了一个类。直接给类传递信息,就可以发送了。
这里还需要说明的是,发送邮箱需要开通POP3/SMTP服务,否则QQ邮箱,网易邮箱等会报错。接收的邮箱就不用开通啦,开通方法百度一下就知道啦。
1 public static class EmailHelper 2 { 3 /// <summary> 4 /// 发送邮件 5 /// </summary> 6 /// <param name="subject">邮件主题</param> 7 /// <param name="msg">邮件内容</param> 8 /// <param name="filePath">附件地址,如果不添加附件传null或""</param> 9 /// <param name="senderEmail">发送人邮箱地址</param> 10 /// <param name="senderPwd">发送人邮箱密码</param> 11 /// <param name="recipientEmail">接收人邮箱</param> 12 public static void SendMail(string subject, string msg, string filePath, string senderEmail, string senderPwd, params string[] recipientEmail) 13 { 14 if (!CheckIsNotEmptyOrNull(subject, msg, senderEmail, senderPwd) || recipientEmail == null || recipientEmail.Length == 0) 15 { 16 throw new Exception("输入信息无效"); 17 } 18 try 19 { 20 string[] sendFromUser = senderEmail.Split('@'); 21 22 //构造一个Email的Message对象 23 MailMessage message = new MailMessage(); 24 25 //确定smtp服务器地址。实例化一个Smtp客户端 26 System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient("smtp." + sendFromUser[1]); 27 28 //构造发件人地址对象 29 message.From = new MailAddress(senderEmail, sendFromUser[0], Encoding.UTF8); 30 31 //构造收件人地址对象 32 foreach (string userName in recipientEmail) 33 { 34 message.To.Add(new MailAddress(userName, userName.Split('@')[0], Encoding.UTF8)); 35 } 36 37 if (!string.IsNullOrEmpty(filePath)) 38 { 39 Attachment attach = new Attachment(filePath); 40 //得到文件的信息 41 ContentDisposition disposition = attach.ContentDisposition; 42 disposition.CreationDate = System.IO.File.GetCreationTime(filePath); 43 disposition.ModificationDate = System.IO.File.GetLastWriteTime(filePath); 44 disposition.ReadDate = System.IO.File.GetLastAccessTime(filePath); 45 //向邮件添加附件 46 message.Attachments.Add(attach); 47 } 48 49 //添加邮件主题和内容 50 message.Subject = subject; 51 message.SubjectEncoding = Encoding.UTF8; 52 message.Body = msg; 53 message.BodyEncoding = Encoding.UTF8; 54 55 //设置邮件的信息 56 client.DeliveryMethod = SmtpDeliveryMethod.Network; 57 message.BodyEncoding = System.Text.Encoding.UTF8; 58 message.IsBodyHtml = false; 59 60 //如果服务器支持安全连接,则将安全连接设为true。 61 //gmail,qq支持,163不支持 62 switch (sendFromUser[1]) 63 { 64 case "gmail.com": 65 case "qq.com": 66 client.EnableSsl = true; 67 break; 68 default: 69 client.EnableSsl = false; 70 break; 71 } 72 73 //设置用户名和密码。 74 client.UseDefaultCredentials = false; 75 //用户登陆信息 76 NetworkCredential myCredentials = new NetworkCredential(senderEmail, senderPwd); 77 client.Credentials = myCredentials; 78 //发送邮件 79 client.Send(message); 80 } 81 catch (Exception ex) 82 { 83 throw (ex); 84 } 85 } 86 87 /// <summary> 88 /// 验证所有传入字符串不能为空或null 89 /// </summary> 90 /// <param name="ps">参数列表</param> 91 /// <returns>都不为空或null返回true,否则返回false</returns> 92 public static bool CheckIsNotEmptyOrNull(params string[] ps) 93 { 94 if (ps != null) 95 { 96 foreach (string item in ps) 97 { 98 if (string.IsNullOrEmpty(item)) return false; 99 } 100 return true; 101 } 102 return false; 103 } 104 }
,直接调用方法,传递需要发送的信息,就可以发送邮箱了。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式