asp.net发送邮件的方式不少,我经常用这样两种:
一,System.Web.Mail 和System.Web.Util

ASP.NET发送邮件(二)public static void SendMail(string from , string to, string subject, string body)
        }
二 ,利用组件 adodb和cdo
ASP.NET发送邮件(二)public static void CDOsendmail(string from, string to, string subject, string body, string userName, string password, string smtpServer)
        }

两种方式的成功率差距很大,后者很高

相关文章:

  • 2022-03-09
  • 2021-11-15
  • 2021-07-13
猜你喜欢
  • 2021-07-04
  • 2021-05-27
  • 2022-02-26
  • 2021-06-18
相关资源
相似解决方案