博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#邮件发送(含附件)
阅读量:5229 次
发布时间:2019-06-14

本文共 2573 字,大约阅读时间需要 8 分钟。

class SendEmail    {        static void Main(string[] args)        {            string from = "发件人@yingu.com";            string fromer = "赵海莹";            string to = "收件人@yingu.com";            string toer = "刘春喜";            string Subject = "逾期数据报表";            string file = string.Concat(System.AppDomain.CurrentDomain.BaseDirectory, "ReprotingTemp\\逾期订单列表.xls");            string Body = "逾期数据报表";            //企业邮箱smtp            string SMTPHost = "smtp.qiye.163.com";            string SMTPuser = "发件人@yingu.com";            string SMTPpass = "******(发件人邮箱密码)";            sendmail(from, fromer, to, toer, Subject, Body, file, SMTPHost, SMTPuser, SMTPpass);        }        ///         /// C#发送邮件函数        ///         /// 发送者邮箱        /// 发送人        /// 接受者邮箱        /// 收件人        /// 主题        /// 内容        /// 附件        /// smtp服务器        /// 邮箱        /// 密码        /// 
private static bool sendmail(string sfrom, string sfromer, string sto, string stoer, string sSubject, string sBody, string sfile, string sSMTPHost, string sSMTPuser, string sSMTPpass) { ////设置from和to地址 MailAddress from = new MailAddress(sfrom, sfromer); MailAddress to = new MailAddress(sto, stoer); ////创建一个MailMessage对象 MailMessage oMail = new MailMessage(from, to); //// 添加附件 if (sfile != "") { oMail.Attachments.Add(new Attachment(sfile)); } ////邮件标题 oMail.Subject = sSubject; ////邮件内容 oMail.Body = sBody; ////邮件格式 oMail.IsBodyHtml = false; ////邮件采用的编码 oMail.BodyEncoding = System.Text.Encoding.GetEncoding("GB2312"); ////设置邮件的优先级为高 oMail.Priority = MailPriority.High; ////发送邮件 SmtpClient client = new SmtpClient(); ////client.UseDefaultCredentials = false; client.Host = sSMTPHost; //企业邮箱需设置端口,个人邮箱不需要 client.Port = 25; client.Credentials = new NetworkCredential(sSMTPuser, sSMTPpass); client.DeliveryMethod = SmtpDeliveryMethod.Network; try { client.Send(oMail); return true; } catch (Exception err) { //Response.Write(err.Message.ToString()); return false; } finally { ////释放资源 oMail.Dispose(); } } }

 

转载于:https://www.cnblogs.com/zhhying/p/4950533.html

你可能感兴趣的文章
手机验证码执行流程
查看>>
python 基础 ----- 变量
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
:hover 鼠标同时触发两个元素变化
查看>>
go语言学习十三 - 相等性
查看>>
Idea 提交代码到码云(提交到github也大同小异)
查看>>
c#连接excel2007未安装ISAM解决
查看>>
Mono 异步加载数据更新主线程
查看>>
初识lua
查看>>
我是插件狂人,jDuang,jValidator,jModal,jGallery
查看>>
张季跃 201771010139《面向对象程序设计(java)》第四周学习总结
查看>>
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
字典【Tire 模板】
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>
Perl IO:随机读写文件
查看>>
Perl IO:IO重定向
查看>>
转:基于用户投票的排名算法系列
查看>>