vote up 2 vote down star

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]

flag

75% accept rate

4 Answers

vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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