zoukankan      html  css  js  c++  java
  • .Net 发送邮件

    private static string Host = System.Configuration.ConfigurationManager.AppSettings["SMTPURL"].ToString(); //SMTP服务器地址
    private static string Account = System.Configuration.ConfigurationManager.AppSettings["SMTPACCOUNT"].ToString(); //SMTP服务帐号
    private static string Pwd = System.Configuration.ConfigurationManager.AppSettings["SMTPPWD"].ToString(); //SMTP服务密码
    private static string From = System.Configuration.ConfigurationManager.AppSettings["SMTPFROM"].ToString(); //发送方邮件地址

            public static int SendMail(string subject, string body, string toMail,ref string msg,string icon="")
            {
                int reslult = -1;
                string To = System.Web.HttpUtility.UrlDecode(toMail.Trim());   // 收件方邮件地址
    
                SmtpClient _smtpClient = new SmtpClient();
                _smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;//指定电子邮件发送方式
                _smtpClient.Host = Host; ;//指定SMTP服务器
                _smtpClient.Credentials = new System.Net.NetworkCredential(Account, Pwd);//用户名和密码
                MailMessage _mailMessage = new MailMessage(From, To);
    
                AlternateView htmlBody = AlternateView.CreateAlternateViewFromString(body, null, "text/html");
                if (!string.IsNullOrEmpty(icon))
                {
                    LinkedResource lrImage = new LinkedResource(icon, "image/gif");
                    lrImage.ContentId = "weblogo";
                    htmlBody.LinkedResources.Add(lrImage);
                    _mailMessage.AlternateViews.Add(htmlBody);
                }
    
                _mailMessage.Subject = System.Web.HttpUtility.UrlDecode(subject); //主题 
                _mailMessage.Body = System.Web.HttpUtility.UrlDecode(body);//内容
                _mailMessage.BodyEncoding = System.Text.Encoding.UTF8;//正文编码
                _mailMessage.IsBodyHtml = true;//设置为HTML格式
                _mailMessage.Priority = MailPriority.High;//优先级
                try
                {
                    _smtpClient.Send(_mailMessage);
                    reslult = 1;
                    msg = "发送成功";
                }
                catch (Exception ex)
                {
                    reslult = -1;
                    msg = ex.Message;
                }
                return reslult;
            }
    View Code
  • 相关阅读:
    (转)Scrapy 深入一点点
    解决Scrapy shell启动出现UnicodeEncodeError问题
    js回调方法
    UGUI 之 控件以及按钮的监听事件系统 存档
    重力感应示例
    网格概念
    Flash Player11异步解码Bitmap
    打包包含已修改过的bug
    ios7官方推荐icon尺寸
    项目资源通过swc获取
  • 原文地址:https://www.cnblogs.com/plming/p/8142975.html
Copyright © 2011-2022 走看看