zoukankan      html  css  js  c++  java
  • C#利用CDO.Message发送邮件

    如何引用CDO.Message? cod.message的引用位置: C:WindowsSystem32cdosys.dll

    CDO.Message objMail = new CDO.Message(,2);
    try
    {
    objMail.To = "接收邮件账号";
    objMail.From = "发送邮件账号";
    objMail.Subject = "subject";//邮件主题string strHTML = @"";
    strHTML = strHTML + "这里可以填写html内容";
    objMail.HTMLBody = strHTML;//邮件内容
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/smtpserverport"].Value = 465;//设置端口
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/smtpserver"].Value = "smtp.qq.com";
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/sendemailaddress"].Value = "发送邮件账号";
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/smtpuserreplyemailaddress"].Value = "发送邮件账号";
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/smtpaccountname"].Value = "发送邮件账号";
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/sendusername"].Value = "发送邮件账号";
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/sendpassword"].Value = "发送邮件账号登录密码";
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/sendusing"].Value = 2;
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"].Value = 1;
    objMail.Configuration.Fields["http://schemas.microsoft.com/cdo/configuration/smtpusessl"].Value = "true";//这一句指示是否使用ssl
    objMail.Configuration.Fields.Update(,2);
    objMail.Send(,2);
    }
    catch (Exception ex) { throw ex; }
    finally { }
    System.Runtime.InteropServices.Marshal.ReleaseComObject(objMail,2);
    objMail = null;
  • 相关阅读:
    10-23C#基础--结构体
    10-23C#基础--特殊集合(stack、queue、hashtable)
    10-21C#基础--集合
    10-20C#基础---一维、二维数组&&冒泡排序
    10-19C#基础--第四部分类型(2)重点
    10-17C#第四部分--类型(1)
    10-17C#语句(3)--跳转语句、异常处理语句
    10-16C#for...循环语句(2)
    C# DEBUG 调试信息打印及输出详解
    .NET中值得体验的精妙设计
  • 原文地址:https://www.cnblogs.com/tsql/p/9078119.html
Copyright © 2011-2022 走看看