Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

1 Answer

up vote 3 down vote accepted

You should be able to decode the POST body using mail.InboundEmailMessage like in webapp.InboundMailHandler

from google.appengine.api import mail

@route('/_ah/mail/contact@appid.appspotmail.com', method = 'POST')
def receive_mail():
    message = mail.InboundEmailMessage(request.body)
    logging.info("received email from: %s" % message.sender)
share|improve this answer
Thank you a lot! It works! (btw, it's a typo in your answer: are missing the closing double quotes) – doru Sep 3 '12 at 16:23
Fixed thanks :) – proppy Sep 3 '12 at 16:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.