使用 Google App Engine 发送时的 Gmail 发送配额
Gmail 规定每天 500 个收件人发送电子邮件的配额。如果您通过他们的 POP/IMAP 界面发送,则配额仅为每天 100 个收件人。
使用 Google 应用引擎在 Gmail 帐户上发送电子邮件的发送配额是多少?它会遵循 POP/IMAP 限制还是标准 Gmail 限制?
以下是我找到的所有官方 Gmail 配额信息: http://mail.google.com/support/bin /answer.py?hl=zh-CN&answer=22839
Gmail imposes a daily 500 recipient quota for sending emails. If you send through their POP/IMAP interface that quota is only 100 recipients per day.
What is the sending quota for sending an email on a gmail account using the google app engine? Would it follow the POP/IMAP limit or the standard gmail limit?
Here is all the official gmail quota information I found:
http://mail.google.com/support/bin/answer.py?hl=en&answer=22839
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
答案取决于您决定如何发送电子邮件。
The answer depends on how you decide to send the email.
使用 App Engine api 发送电子邮件(并且您已启用计费)时,您可以每分钟发送 4900 封电子邮件。请参阅此页面上的配额:
http://code.google.com/appengine/docs/quotas.html#Mail
When using app engine api to send emails (and you have billing enabled), you can send 4900 emails/minute. See the quotas on this page:
http://code.google.com/appengine/docs/quotas.html#Mail
显然,Google 最近更改了电子邮件配额。限制已降至每天 100 封电子邮件,且无法购买更多电子邮件。
Google 建议使用 SendGrid 发送更多电子邮件。
如果有人可以发布 Java 代码来使用 sendgrid,那将会很有帮助,因为像往常一样缺乏 Google 的文档。
编辑:有Java 文档。我还没有尝试过这个。
Apparently, Google has changed the quota for email recently. The limit has gone down to 100 emails per day, with no option to buy more.
Google advises to use SendGrid to send more email.
If anyone could post Java code to use sendgrid, that would be helpful, as Google's documentation is lacking, as usual.
Edit: There is documentation for Java. I have not tried this yet.