使用 ActionMailer.Net 发送电子邮件时如何设置 EnableSsl=True?

发布于 2024-11-13 20:33:26 字数 124 浏览 2 评论 0原文

我在我的 MVC 网站中使用 ActionMailer.Net 发送电子邮件,我想从 gmail 发送,但 gmail 需要 EnableSsl=True 才能发送,但我不知道在 ActionMailer.net 中的哪里可以配置它。

I am using ActionMailer.Net in my MVC website to send email, I want to send from gmail, but gmail needs EnableSsl=True to be able to send, but I don't know where in ActionMailer.net I can configure this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

美人骨 2024-11-20 20:33:26

您必须将 web.config 文件编辑为如下内容:

<system.net>
  <mailSettings>
    <!-- Method#1: Configure smtp server credentials -->
    <smtp from="[email protected]">
      <network enableSsl="true" host="smtp.gmail.com" port="587" userName="[email protected]" password="valid-password" />
    </smtp>
  </mailSettings>
</system.net>

参考:

http://www.hanselman.com/blog/NuGetPackageOfTheWeek2MvcMailerSendsMailsWithASPNETMVCRazorViewsAndScaffolding.aspx\

You have to edit your web.config file to something like this:

<system.net>
  <mailSettings>
    <!-- Method#1: Configure smtp server credentials -->
    <smtp from="[email protected]">
      <network enableSsl="true" host="smtp.gmail.com" port="587" userName="[email protected]" password="valid-password" />
    </smtp>
  </mailSettings>
</system.net>

Reference:

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