博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#向指定的邮箱发送邮件
阅读量:4965 次
发布时间:2019-06-12

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

private bool SendEmail(string fileName)        {            MailMessage m_Mail = new MailMessage();            m_Mail.From = new MailAddress(ConfigurationManager.AppSettings["MailFrom"]);            string m_MailToStr = ConfigurationManager.AppSettings["MailTo"];            string m_MailServer = ConfigurationManager.AppSettings["MailServer"];            string[] m_MailToList = m_MailToStr.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries);            for (int i = 0; i < m_MailToList.Length; i++)            {                m_Mail.To.Add(new MailAddress(m_MailToList[i]));            }            m_Mail.Subject = "Pending Fund List";            m_Mail.Body = "Please find the attachment for the Pending Funds List while it is ID, OP & Perf ready. ";            m_Mail.IsBodyHtml = true;            m_Mail.BodyEncoding = System.Text.Encoding.UTF8;            Attachment m_MailAttach = null;            if (!string.IsNullOrEmpty(fileName))            {                m_MailAttach = new Attachment(fileName);                m_Mail.Attachments.Add(m_MailAttach);            }            SmtpClient client = new SmtpClient(m_MailServer);            try            {                client.Send(m_Mail);                if (m_MailAttach != null)                    m_MailAttach.Dispose();                return true;            }            catch (Exception e)            {                //_log.Error(e.Message);                return false;            }        }

 

转载于:https://www.cnblogs.com/mibing/p/7845701.html

你可能感兴趣的文章
CodeForces Round #527 (Div3) D1. Great Vova Wall (Version 1)
查看>>
xvid x264
查看>>
置顶目录
查看>>
安装vue-cli过程中卡住
查看>>
脚本基础
查看>>
Windows的系统中DLL文件详解
查看>>
sql server 语句
查看>>
Redis-客户端缓冲区 output buffer
查看>>
[原创]X-HDL 4.2安装与使用
查看>>
iOS开发技巧(1)
查看>>
校内测试618
查看>>
hive中的with用法
查看>>
运维自动化之1 - ansible 批量主机管理
查看>>
Python开发【第十五篇】:Web框架之Tornado
查看>>
HTML表格边框的设置小技巧-表格
查看>>
Java内存回收 - 落日之心的日志 - 网易博客
查看>>
汇编语言-数据表示
查看>>
java中的TreeMap如何顺序按照插入顺序排序
查看>>
NFS原理详解
查看>>
Java代码加密与反编译(二):用加密算法DES修改classLoader实现对.class文件加密...
查看>>