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]  
  • 相关阅读:
    Android Touch事件相关源码【Android SourceCode 2.3.6】
    使用方式比较优雅的代码集合
    Android系统中是否开启定位及定位模式的判断
    Android中软键盘展示、EditText焦点获取及windowSoftInputMode属性探究
    删除rz上传失败乱码的文件
    linux mysql 操作命令
    linux下端口被占用
    linux环境搭建记录
    ibatis 批量插入数据
    jQuery id模糊 选择器 批量处理
  • 原文地址:https://www.cnblogs.com/huangwen/p/644646.html
Copyright © 2011-2022 走看看