asp.net mvc smtp 几个帐户
我需要使用 2 个邮件帐户(用户 1 和用户 2)
<system.net>
<mailSettings>
<smtp from="user1">
<network host="smtp.yandex.ru" port="25" userName="user1" password="pass" />
</smtp>
</mailSettings>
</system.net>
I need to use 2 mail accounts (for user1 and user2)
<system.net>
<mailSettings>
<smtp from="user1">
<network host="smtp.yandex.ru" port="25" userName="user1" password="pass" />
</smtp>
</mailSettings>
</system.net>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查这个答案:在 web.config 中设置多个 SMTP 设置?
是在 web.config 文件中添加两个 smtp 帐户的方法:
但是要设置特定帐户,您必须选择以下方式之一:
在应用程序设置中添加 smtp 数据,然后解析并读取它
或
读取web.config 文件,然后解析节点,然后手动设置 SMTP 客户端配置。
Check this answer : Setting multiple SMTP settings in web.config?
There is way to add two smtp account in web.config file :
but to set perticular account you have to choose one of the following way :
Add the smtp data in the appsetting and than parse it and read it
or
Read the web.config file and then parse the node and then set the SMTP client configuration manually.