Processing incoming email

Posted by Mike Schots on Stack Overflow See other posts from Stack Overflow or by Mike Schots
Published on 2009-01-15T21:44:32Z Indexed on 2010/03/22 8:21 UTC
Read the original article Hit count: 388

Filed under:
|
|
|

How do I programmatically read an incoming email with .NET. I need a method to take the content of email message (in this case XML) on a POP server and read it into my application.

Ideally this could be solved by:

  • .NET code that I can run as a background task on my webserver to process the email.
  • A service that can POST the contents of the email to my webserver.

Although I'm open to other options.

EDIT: Copied from the "non-answer":

Currently, we're looking at using the email accounts our hosting company provides.

Our own mail server could potentially be an option, but its something the we'd need to contact the host about.

© Stack Overflow or respective owner

Related posts about email

Related posts about .NET