Click here to Skip to main content
15,881,089 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

We have one manual activity where if a user requests for access to any specific folder we reply to their email by providing them a link to fill the form and submit it for approval.

In a day we receive nearly 10-15 emails. I want to know if its possible to send an automatic reply to sender when he/she requests for access to a specific folder?

Regards,
Archies
Posted

1 solution

Yes this would be very possible.

A number of ways to do this would be:

1) create a VSTO (Visual Studio Tools for Office) addin for outlook. You can listen for events which occur on the inbox which means you can act on an event when a email arrives in the inbox. You can then parse the mail item from the outlook explorer / instance object and check for say the wording in the subject or body. If this is detected you can easily send a response automatically.

The downside here is that a user would have to be in outlook for this to be working.

http://msdn.microsoft.com/en-US/office/hh128768[^]

2) Create an application or service that polls a mail box or public folder in exchange. It could then read emails from within the the mailbox and respond accordingly.

http://msdn.microsoft.com/en-us/library/dd877045(v=exchg.140).aspx
http://www.dimastr.com/redemption/home.htm
http://www.emailarchitect.net/eagetmail/kb/csharp.aspx?cat=2

If you can use EWS and not mappi although both work well.

3) Have your butler do it.


Kind regards
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900