Web2py - 使用 Gmail 地址

发布于 11-11 07:20 字数 695 浏览 4 评论 0原文

我是 web2py 的初学者。我刚刚创建了一个新项目。

我想使用 Gmail 地址,例如 [电子邮件受保护]。我需要修改什么?

mail.settings.server = 'logging' or 'smtp.gmail.com:587'  # your SMTP server
mail.settings.sender = '[email protected]'         # your email
mail.settings.login = '[email protected]:mypassword'      # your credentials or None

这样可以吗? 'logging' 的目的是什么?

I am beginner with web2py. I have just created a new project.

I want to use a gmail address, let's say [email protected]. What do I need to modify ?

mail.settings.server = 'logging' or 'smtp.gmail.com:587'  # your SMTP server
mail.settings.sender = '[email protected]'         # your email
mail.settings.login = '[email protected]:mypassword'      # your credentials or None

Is this OK ?
What is the purpose of 'logging' ?

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

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

发布评论

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

评论(1

盛夏尉蓝2024-11-18 07:20:34

应该

mail.settings.server = 'smtp.gmail.com:587' 

设置 mail.settings.server = 'logging' 具有记录到控制台发送电子邮件的请求的效果,但不发送电子邮件。它对于调试电子邮件问题很有用。

Should be

mail.settings.server = 'smtp.gmail.com:587' 

Setting mail.settings.server = 'logging' has the effects of logging to console requests for sending emails but does not send the emails. It is useful for debugging email problems.

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