Reputation: 12828
How do I setup a server so I can get emails and parse them in python?
Upvotes: 1
Views: 222
Reputation: 14908
There's a bunch of services on the web that will make it easier for you to send and receive e-mails using their API. This would relieve you from the pain of setting up, running and administrering your own e-mail service.
Upvotes: 0
Reputation: 18627
This is a pretty broad question, so you are going to get a pretty broad answer. I'd recommend looking into Twisted Mail. Also, Python has an email library for parsing. Python has an smtpd library as well, but I prefer Twisted personally.
Upvotes: 3