Asp.net core ASP.NET核心RC2 SMTP客户端

Asp.net core ASP.NET核心RC2 SMTP客户端,asp.net-core,mailkit,.net-core-rc2,Asp.net Core,Mailkit,.net Core Rc2,新的ASP.NET核心框架不包括完整的.NET框架中的System.NET.Mail命名空间。RC1版本确实支持MailKit和MimeKit,因此使用它发送电子邮件是可能的,但最近发布的RC2System.Net.Security.SslStream不再包括authenticates客户端(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.A

新的ASP.NET核心框架不包括完整的.NET框架中的System.NET.Mail命名空间。RC1版本确实支持MailKit和MimeKit,因此使用它发送电子邮件是可能的,但最近发布的RC2
System.Net.Security.SslStream
不再包括
authenticates客户端(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,布尔值)

对该函数的所有调用都应替换为
authenticatesClientAsync

这会导致Mailkit抛出一个
MissingMethodException
。Mailkit可能很快就会更新,但我目前找不到使用新RC2版本发送电子邮件的方法


因此,我想知道是否有人找到了另一个支持
ASP.NET Core RC2
的SmtpClient实现?

获取源代码,进行必要的更改,执行pull请求并参与其中?:)