I'm new to programming. I'm using Bottle on GAE. I want to receive and read mails (if it's possible).
This is my app.yaml file:
- url: /_ah/mail/contact@appid.appspotmail.com
script: main.py
login: admin
inbound_services:
- mail
This is (should be) my mail handler in the main.py file:
from google.appengine.api import mail
from google.appengine.ext.webapp.mail_handlers import InboundMailHandler
@route('/_ah/mail/contact@appid.appspotmail.com', method = 'POST')
def receive_mail():
pass
When I send an email to the above address in logs appears:
2012-09-03 17:03:00.878 /_ah/mail/contact@appid.appspotmail.com 200 187ms 0kb
0.1.0.20 - - [03/Sep/2012:07:03:00 -0700] "POST /_ah/mail/contact@appid.appspotmail.com HTTP/1.1" 200 59
How can I read/parse the mail?
Thank you in advance for any answer or comment.