vote up 0 vote down star

Hi,

I'm setting up an automated response with a third party. The third party can only respond via e-mail, so I need a way to determine when I get a new e-mail. My plan is to create a windows task that will run a C# program that checks to see if a new e-mail is from this third party.

My company uses outlook, which runs off of the Microsoft Exchange database. I did some research, and I saw that some people use the Microsoft MAPI namespace. Is this the way to go about it? Is there some way that I can use System.Net.Mail to check for new mail from a particular address?

Thanks, Aaron

flag

70% accept rate
What version of exchange are you running ? as there are loads of whats to do this. EWS(2007) or WebDav(<2007) both have notifications subsystems built in that you caould use. – 76mel Jul 9 at 22:05
I'm using Exchange 2003. – Aaron Jul 10 at 14:02

2 Answers

vote up 1 vote down

Here's a related discussion with code examples:

http://www.devnewsgroups.net/group/microsoft.public.exchange.development/topic33087.aspx

link|flag
vote up 0 vote down

Depending on your requirements you could use Outlook Interop / MAPI which is simply using Outlook from code - in this case look at: Microsoft.Office.Interop.Outlook assembly. This has the benefit of an event firing on new items popping up in your mailbox.

On the other hand if your server supports POP3, you can simply get random POP3 libray and periodically query the server.

link|flag

Your Answer

Get an OpenID
or

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