Reputation: 10128
According documentation Google App Engine could send mail but from restricted list of addresses -> http://code.google.com/intl/pl/appengine/docs/python/mail/emailmessagefields.html
How to send email from Google App Engine with "from:" of custom domain i.e. mydomain.com?
Is it need configuration or use of custom library - please help with your experience.
Upvotes: 1
Views: 839
Reputation: 26647
The sender address must be a verfied dev, owner or viewer of the app or a logged in google user. I can send emails from [email protected] after adding that email address to permissions. You can also send an email from the logged in user if the user is logged in with a google account.
I hope this explains some of what you need to know.
Upvotes: 1