asp.net – 如何在Web.config中启用SmtpClient的SSL

前端之家收集整理的这篇文章主要介绍了asp.net – 如何在Web.config中启用SmtpClient的SSL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法从web.config设置EnableSSL?

我可以在代码中设置此属性,但是对于Simple Mail Web事件和使用默认Smtp服务器的其他类来说,这不是有效的。有任何想法吗?

解决方法

对于.NET 3及更早版本:您不能。你必须手工管理。

有关更多信息,请参见https://blogs.msdn.microsoft.com/vikas/2008/04/29/bug-asp-net-2-0-passwordrecovery-web-control-cannot-send-emails-to-ssl-enabled-smtp-servers/

对于.NET 4:可以。

http://theoldsewingfactory.com/2011/01/06/enable-ssl-in-web-config-for-smtpclient/

<configuration>
    <system.net>
        <mailSettings>
            <smtp deliveryMethod=”network”>
                <network host="localhost"
                         port="25"
                         enableSsl="true"
                         defaultCredentials="true" />
            </smtp>
        </mailSettings>
    </system.net>
</configuration>
原文链接:https://www.f2er.com/aspnet/253378.html

猜你在找的asp.Net相关文章