zoukankan      html  css  js  c++  java
  • asp.net实现邮件的发送

     asp.net实现邮件的发送

     1try
     2        {
     3            CDO.Message Msg = new CDO.Message();
     4            Msg.From = "YY@sohu.com";
     5            Msg.To = "XX@sohu.com";
     6            Msg.Subject = "主题";
     7            Msg.HTMLBody = "<html><body>" + "内容"
     8        + "</body></html>";
     9            CDO.IConfiguration Config = Msg.Configuration;
    10            ADODB.Fields oFields = Config.Fields;
    11            oFields["http://schemas.microsoft.com/cdo/configuration/sendusing"].Value = 2;
    12            oFields["http://schemas.microsoft.com/cdo/configuration/sendemailaddress"].Value = "YY@sohu.com";
    13            oFields["http://schemas.microsoft.com/cdo/configuration/smtpaccountname"].Value = "YY@sohu.com";
    14            oFields["http://schemas.microsoft.com/cdo/configuration/sendusername"].Value = "YY";
    15            oFields["http://schemas.microsoft.com/cdo/configuration/sendpassword"].Value = "password";
    16            oFields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"].Value = 1;
    17            oFields["http://schemas.microsoft.com/cdo/configuration/languagecode"].Value = 0x0804;
    18            oFields["http://schemas.microsoft.com/cdo/configuration/smtpserver"].Value = "smtp.sohu.com";
    19            oFields.Update();
    20            Msg.BodyPart.Charset = "gb2312";
    21            Msg.HTMLBodyPart.Charset = "gb2312";
    22            Msg.Send();
    23            Msg = null;
    24        }

    25        catch (Exception err)
    26        {
    27            throw err;
    28        }
    [ftc=#EE1D24]<font color=red></font>[/ft]  
  • 相关阅读:
    LeetCode506-相对名次
    LeetCode496-下一个更大的元素(遍历)
    Redis查询超时问题排查及原因分析
    SQL Server 输出消息
    SQL Server按时间分段统计数据
    C# 数据保存到Excel
    查看SQL Server数据库恢复进度
    输入百度网址地址后面有tn小尾巴解决办法
    SQL Server 查询数据大小
    Sping Boot + Spring Security + Mybaits + Logback +JWT验证 项目开发框架搭建
  • 原文地址:https://www.cnblogs.com/huangwen/p/644646.html
Copyright © 2011-2022 走看看