zoukankan      html  css  js  c++  java
  • 使用微软邮箱发送邮件

     System.Net.Mail.MailMessage mailMessage = new System.Net.Mail.MailMessage();
     mailMessage.From = new MailAddress("123456@hotmail.com", "**********", Encoding.UTF8);
     mailMessage.To.Add(new MailAddress("*****@126.com"));
    
     mailMessage.Subject = "Test";
     mailMessage.Body = "FYI";
     mailMessage.IsBodyHtml = true;
     mailMessage.BodyEncoding = System.Text.Encoding.UTF8;
     mailMessage.Priority = System.Net.Mail.MailPriority.Normal;
    
     System.Net.Mail.SmtpClient smtp = new SmtpClient();
     smtp.Host = "smtp.live.com";
     smtp.Port = 587;
     smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
     smtp.Timeout = 1000 * 60 * 30;
     smtp.UseDefaultCredentials = false;

       //解决异常: The server response was: 5.7.3 Requested action aborted; user not authenticated
       //chjuqegazuwyznmc 不是邮箱密码,而是微软帐户提供的app password,需要自己配置生成。
       //如果使用邮箱密码,会被认为发送垃圾邮件,而被锁定账号。
       smtp.EnableSsl = true;
       smtp.Credentials = new System.Net.NetworkCredential("123456@hotmail.com", "chjuqegazuwyznmc");

       //解决异常: The remote certificate is invalid according to the validation procedure.

     ServicePointManager.ServerCertificateValidationCallback = delegate(object s, X509Certificate certificate,
                X509Chain chain, SslPolicyErrors sslPolicyErrors)
                { return true; };
    
     smtp.Send(mailMessage);

    配置生成 app password:

  • 相关阅读:
    批量清理harbor镜像
    常用的git命令
    Gentoo网络管理方法总结
    Pelican主题配置:elegant
    Pelican搭建静态博客
    UNIX基础--安装应用程序: Packages 和 Ports
    UNIX基础--Manual Pages
    UNIX基础--Shells
    UNIX基础--进程和守护进程
    UNIX基础--磁盘组织
  • 原文地址:https://www.cnblogs.com/yipeng-yu/p/5623566.html
Copyright © 2011-2022 走看看