Gmail Send Quota, When Sending Using Google App Engine

百般思念 提交于 2019-12-05 18:25:56

The answer depends on how you decide to send the email.

  • Are you using the built in App Engine mailing API? If so you, can send lots and lots of emails (see amir's answer).
  • Are you sending your mail through Gmail's SMTP server? ( I assume you meant SMTP when you said POP, as POP is only for reading email) If so, the limit is 100, as you state.
  • Is your app connecting to gmail through http and pretending to be a human using the normal interface? Then the 500 limit would apply.
Amir

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

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!