用ASP.NET Core 1.0中实现邮件发送功能

准备将一些项目迁移到 asp.net core 先从封装类库入手,在遇到邮件发送类时发现在 asp.net core 1.0中并示提供SMTP相关类库,于是网上一搜发现了MailKit

好东西一定要试一下,何况是开源,下面是代码可实现SMTP邮件发送:

using MailKit.Net.Smtp;
using MailKit.Security;
using MimeKit;
using System.Threading.Tasks;

                client.Send(emailMessage);
                client.Disconnect(true);

            }
        }

        public static async Task SendEmailAsync(string email, string subject, string message)
        {
            var emailMessage = new MimeMessage();

    }
}

以上代码同步异步都没有问题

注:一般邮箱如腾讯企业邮、163等都可以发送成功,但阿里云邮件推送失败!

-------------------------------------------分割线-------------------------------------------

用MailKit实现了Asp.net core 邮件发送功能,但一直未解决阿里云邮件推送问题,提交工单一开始的回复不尽如人意,比如您的网络问题,您的用户名密码不正确等,但继续沟通下阿里云客户还是很耐心的。

最终结论,是由于MailKit发送了两次EHLO命令,查看了MailKit源码后竟然发现,里面写了硬编码:

if (host != "smtp.strato.de" && host != "smtp.sina.com")
     Ehlo (cancellationToken);
     authenticated = true;
     OnAuthenticated (response.Response);

哈哈,只要把阿里云SMTP地址加上就好:smtpdm.aliyun.com

还好dudu提交了Github已经加进去,等作者发布就好,这位作者还是微软件的员工。

猜你喜欢

转载自www.linuxidc.com/Linux/2017-01/139292.htm