• 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]  
  • 相关阅读:
    airtest-selenium
    window下使用Redis Cluster部署Redis集群
    调用webservice进行身份验证
    ETL数据从sqlserver到mysql之间迁移
    Sqlserver调用api
    EXCEL导入数据到SQLSERVER
    博客园开通的第一天
    Visual Studio 2017 离线安装包
    WPF学习笔记1---初接触
    Visual Studio 2008 + ObjectARX2012环境配置
  • 原文地址:https://www.cnblogs.com/huangwen/p/644646.html
Copyright © 2020-2023  润新知