Umbraco 轮廓和谷歌应用程序电子邮件

发布于 2024-10-10 06:30:18 字数 86 浏览 3 评论 0原文

我似乎无法使用 umbraco 与 google mail 作为 smtp 服务器一起使用轮廓包(我认为这是一个 SSL 问题)。还有其他人遇到过这个问题吗?

I can't seem to get the contour package with umbraco working with google mail as the smtp server (I think its a SSL issue). Has anyone else had this issue?

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

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

发布评论

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

评论(2

铃予 2024-10-17 06:30:18

我过去在使用 Google Mail SSL SMTP 服务器时遇到过问题。似乎有 2 个端口选项供您使用。我认为您需要使用端口 587 而不是默认的 468。Google

Mail 服务器详细信息:
http://mail.google.com/support/bin/answer.py ?answer=78799

I've experienced problems with Google Mail SSL SMTP servers in the past. There seem to be 2 port options for you to use. I think you need to use port 587 not the default 468.

Google Mail server details:
http://mail.google.com/support/bin/answer.py?answer=78799

夏雨凉 2024-10-17 06:30:18

我刚刚提交了 Contour Contrib 项目的更新,该项目添加了对如上所述,打开 SSL 是必需的。

在下载更新之前,您只需要下载并编译源代码并将发布文件夹复制到您的 Umbraco 解决方案中,这将为您提供一个新的工作流程类型“电子邮件,扩展”,然后您可以使用它来代替标准的“电子邮件”工作流程类型。

对于 Gmail,您需要在 web.config 中进行以下设置:

  <system.net>
    <mailSettings>
      <smtp>
        <network host="smtp.gmail.com" userName="[email protected]" password="yourpassword" port="587" />
      </smtp>
    </mailSettings>
  </system.net>

您还需要将以下行添加到 web.config 的 appSettings 部分

<add key="contourContribUseSsl" value="true" />

干杯,

Chris

I have just submitted an update to the Contour Contrib project that adds support for turning on SSL which is required as mentioned above.

Until the download has been updated you will just need to download and compile the source and copy the release folder into your Umbraco solution, this will give you a new Workflow type "email, extended" which you then use instead of the standard "email" workflow type.

For Gmail you will need the following settings in web.config:

  <system.net>
    <mailSettings>
      <smtp>
        <network host="smtp.gmail.com" userName="[email protected]" password="yourpassword" port="587" />
      </smtp>
    </mailSettings>
  </system.net>

You will also need to add the following line to the appSettings section of the web.config

<add key="contourContribUseSsl" value="true" />

Cheers,

Chris

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