Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在不提供我的电子邮件 ID 和密码的情况下在 asp.net 中发送电子邮件
通常,根据您的邮件服务器的安全程度,您可以将其添加到您的 Web 配置中:
<system.net> <mailSettings> <smtp deliveryMethod="Network"> <network host="192.168.0.1" port="25" /> </smtp> </mailSettings> </system.net>
这将只允许您通过该服务器发送电子邮件(将 IP 更改为您的邮件服务器),因为您喜欢的任何地址(电子邮件非常不安全)而无需凭据。