up vote 2 down vote favorite
share [g+] share [fb]

I have a requirement to write an application which will allow users to run selected scripts when a mail with a certain subject is received from a certain address. Basically the application should monitor mail arriving in the outlook (Exchange server 2007). How can it be done? Any idea would be helpful.

Basically, I need to keep track of the New Mail event and retrieve the sender and mail subject details to my .NET application.

[To be implemented in .NET]

link|improve this question

62% accept rate
feedback

4 Answers

Never did it before, but as far as i know, this can be done by writing your own outlook add-in.

Some source which would maybe helpful:

link|improve this answer
feedback

That can be accomplished by using the Outlook ObjectModel and the MailItem/Item Object and events or by just checking the MailItems for Unread Emails using a timer. check the MSDN for details about the Object(MailItem)

link|improve this answer
feedback

Also if you don't want to use outlook i.e stand alone you can use EWS or WebDav directly against the Exchange Server. Both have notification services.

link|improve this answer
feedback

I have done this before, and i can say that Olivier is pointing you in the right direction. In addition, if you are using Outlook 2003 as your client, you might want to have a look at the Redemption library as that will get rid of all the annoying "security" prompts that require user intervention.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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