Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to convert incoming email to a HTTP POST request? [closed]

Tags:

http

email

I'm looking for a simple service/software that will convert emails into HTTP POST requests so I don't have to code in separate code paths for email handling. Does such a thing exist?

like image 243
Shalmanese Avatar asked Jul 12 '10 07:07

Shalmanese


2 Answers

Google app engine converts incoming email into a POST to your app:

http://code.google.com/appengine/docs/python/mail/receivingmail.html

You could either handle the emails directly on app engine, or write a handler which calls back to your other site:

http://code.google.com/appengine/docs/python/urlfetch/overview.html

like image 100
Saxon Druce Avatar answered Oct 26 '22 01:10

Saxon Druce


There are a couple services you might be interested in: http://mailhooks.com is a good free solution for this, but there may be a delay in the time to post, and I don't believe they include attachments.

You might also look at http://mailnuggets.com which is a paid service, but posts are quicker and it includes attachments.

like image 22
user652921 Avatar answered Oct 25 '22 23:10

user652921