asp.net mvc smtp 几个帐户

发布于 2024-11-14 10:07:02 字数 316 浏览 1 评论 0原文

我需要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剪不断理还乱 2024-11-21 10:07:02

检查这个答案:在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文