I'm thinking about building an email app on GAE but worried about the email quota limit. Can I continue to grow the quota over 20,000? And if so is there a limit or can I grow it over time?
Asked
Active
Viewed 246 times
0
-
Are you reinventing the whee--MailChimp? – Nick T Jun 24 '13 at 21:15
-
Actually yes because MailChimp keeps shutting down our account from illegitimate claims. – PizzaPanther Jun 24 '13 at 21:36
-
before you invest your time and code using GAE's mail servers, you should be aware of the severe limitations they impose. http://code.google.com/p/googleappengine/issues/detail?id=1800 – Stevko Jun 25 '13 at 05:22
-
This question appears to be off-topic because it is about GAE terms of service, not programming. – Bill the Lizard Jul 16 '13 at 03:40
-
@BilltheLizard somehow google officially declared stackoverflow is the place to ask development question, it didn't said it must be programming question. see https://developers.google.com/appengine/community – user7180 Jul 16 '13 at 06:04
-
@LarryMok Google doesn't decide what's on-topic here, we do. If you have a question about Google's terms of service, it makes sense to ask Google, not us. This site is for programming questions. – Bill the Lizard Jul 16 '13 at 11:08
-
@BilltheLizard May be it's Google's fault then. They ask the developer to come here and say their team will be here to answer question. And there is no where else we can contact the team. – user7180 Jul 16 '13 at 13:35
2 Answers
4
Of course you can:
From: https://developers.google.com/appengine/docs/quotas#Mail
If your app will need to send more than 20,000 messages per day, consider signing up for a premier account.
I'm sure you've got great amount of user and could afford the price if you have that much email to send.

user7180
- 3,756
- 2
- 22
- 26
1
You can't with a standard account, but usually a limit of 20,000 emails/day is enough (I guess this limit is to prevent spammers to use their API).
If you want to send more, you should look for a third-party service or you can try to contact the GAE sales team, I know that they give higher quotas for some of their customers

Dalmas
- 26,409
- 9
- 67
- 80
-
Thanks for the info. 20,000 is not enough if you have mailing lists with more emails than that. – PizzaPanther Jun 24 '13 at 21:35
-
I know, but I mean that their API is more for contact or validation emails. Never try to send emails to large mailing lists yourself, you will run into a lot of issues. Check this question : http://stackoverflow.com/questions/3905734/how-to-send-100-000-emails-weekly – Dalmas Jun 24 '13 at 21:43
-
I would normally agree with you, but I've out grown third party services and I'm to the point now where I need to control the process more. So I'm going to do the list management myself and use a service like GAE or Amazon SES to actually send the mail. Looks like Amazon SES wins because GAE can't handle the amount I'll need. – PizzaPanther Jun 24 '13 at 22:16
-
2You can also try to contact the GAE sales team, I know that they give higher quotas for some of their customers. – Dalmas Jun 24 '13 at 22:52