vote up 0 vote down star

We have our mail setup with google apps. We want to be able to run some regular expressions on incoming mail and process this information.

Is this possible today with Google App Engine? Does google provide some kind of infrastructure that can do this?

flag

3 Answers

vote up 1 vote down

Google don't currently support handling email in App Engine, though it is on the roadmap. In the meantime, services like smtp2web will handle it for you (disclaimer: I wrote smtp2web).

link|flag
Thats a pretty cool service. – Richard Levasseur Mar 6 at 9:39
vote up 0 vote down

You could setup an email account and have an external server (one you create and host outside of AE) access the gmail account via IMAP. Your "mail server" then reads the messages and accesses the /email API of your app on AE.

Python has an email module, so you could post the entire message there, or if that doesn't work (due to whatever restrictions), you could preprocess it on your mail server and post the simplified version to your app.

The downside is that you'll have to resort to polling for information, but that should be ok since email is accepted to have somewhat of a delay.

link|flag
Your not allowed to use the socket lib, would that stop imap from working? – Sam Mar 6 at 8:50
I mean to say, the external server (one you host yourself) isn't running on app engine, so it can access the socket lib. I edited the answer to be a bit clearer – Richard Levasseur Mar 6 at 9:09
vote up 1 vote down

Processing incoming email is not yet supported. It is however on their roadmap: http://code.google.com/appengine/docs/roadmap.html

link|flag
Is there any other ways you would recommend how I go about achieving this task – Ken Mar 5 at 23:09
No really, i guess you could screen scrape the mail from a html mail client and then use something like this: schedulerservice.appspot.com/about Best to either use another platform or wait for the roadmap to be implemented. – Sam Mar 6 at 4:00

Your Answer

Get an OpenID
or

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