views:

40

answers:

1

I would like to create an app such that I can send an email with a JPEG attachment and then display it on my site. I am fairly certain that the Mail API allows me to do this, but if it isn't possible please let me know.

My biggest concern is what are the limits on the attachment size my app can receive, and what are the quotas related to receiving email? The email quotas I saw seemed to specify quotas for outgoing email. Is it different for incoming mail?

+1  A: 

Incoming emails are directed to one of your application's request handlers for processing, so they are very likely to be subject to the same limitations as any other incoming request. 10 Mb is the size limit for a handled request.

Adam Crossland