Uploading an image to the Google App Engine site

I would like to create an application so that I can send an email with a JPEG attachment and then display it on my site. I'm pretty sure the Mail API allows me to do this, but if that's not possible please let me know.

My biggest problem is, what are the application size limits that my application can receive and what are the quotas associated with receiving email? Email quotas I have seen seemed to indicate quotas for outgoing email. Is this different from incoming mail?

+2


a source to share


1 answer


Inbound emails are directed to one of your application request handlers for processing, so they will likely be subject to the same restrictions as any other incoming request. 10 Mb is the size limit for the request being processed.



+1


a source







All Articles