得到“来自” web.config 中 asp.net smtp 客户端配置的属性值
如何从 web.config 文件中的 asp.net SMTP 客户端配置获取“from”属性值?
<mailSettings>
<smtp deliveryMethod="Network" from="[email protected]">
<network host="somehosting" userName="someusername" password="somepassword"/>
</smtp>
</mailSettings>
How to get the "from" attribute value from the asp.net SMTP client configuration in the web.config file?
<mailSettings>
<smtp deliveryMethod="Network" from="[email protected]">
<network host="somehosting" userName="someusername" password="somepassword"/>
</smtp>
</mailSettings>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样:
Like this:
另一种方法是使用命名部分:
应用程序配置:
初始化代码:
这还允许您在一个配置中拥有多个 smtp 设置,以防您需要切换 smtpClients。我忘了声明,如果使用这种方法,您将必须手动构建 smtp 客户端:
Another approach is to use named sections:
Application config:
Init Code:
This will also allow you to have multiple smtp settings within one config in case you ever need to switch smtpClients. I forgot to state, you will have to build up the smtp client manually if this approach is used: