这是我的web.config文件:
<system.net> <mailSettings> <smtp from="xxx@gmail.com" > <network host="smtp.gmail.com" port="587" userName="xxx@gmail.com" password="yyy" /> </smtp> </mailSettings> </system.net>
我需要启用TLS,这是我的电子邮件服务器的要求。但是我只看到SSL。
解决方法
它实际上是等价的 – TLS比SSL更广泛。所以使用enableSsl =“true”启用TLS。根据
MSDN documentation,这将强制SMTPClient使用
RFC 3207
(和RFC使用两个术语TLS / SSL)。
(和RFC使用两个术语TLS / SSL)。
<network enableSsl="true" host="smtp.gmail.com" port="587" ...