views:

156

answers:

2

The project that I am working on is required to monitor an email account for new messages. I am free to decide the formatting of these messages so that it will be easier to parse the information contained in them. (like [Request code: xxxxxxxxx])

Based on request codes, I need to send an email response to the original sender. I haven't done anything like that before. Please can you suggest any scheme/API/library/code snippet?

I am using:

  • Microsoft exchange server (email will be received on an email account of this server)
  • Visual Studio 2008 (C#)
+2  A: 

A quick google search gives this:

You could also setup a POP3 gateway and use POP3 to collect the email if you are the total owner of the email/account

EDIT: I would also stay clear of any attachments and just put your information in the body if security is not an issue

Wayne
A: 

Email MimeTypes & Parsing is no fun, but if you have to try: http://sourceforge.net/projects/hpop/

A MSMQ might be a better alternative.

Chad Grant