Click here to Skip to main content
15,892,809 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Friends,

I am sending a email through asp.net page. When receiver reads the email from his inbox I want the acknowledgement that Mail is read and when I received the acknowledgement mail, I want to read my outlook inbox and check that I received the acknowledgement for the same mail which I had sent to him. For more detail I am giving my situation in points in simple example for your better understanding.

1. I sent the mail to abc@abc.com
2. abc receives the mail and reads it.
3. As soon as abc reads the mail one read receipt acknowledgement will come into my outlook Inbox.
4. Now I want to read this read receipt acknowledgement through my code.

How can I do this?

So please help me on this. Hope you got my question. sample example will help me more.

thanks & regards
Yogesh
Posted
Updated 21-Jul-10 1:03am
v3

1 solution

You could look for the property "report-type=delivery-status;" in the mail header. To read this from the MailItem you could use the code below:

MailItem.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x007D001E")

To traverse the mail items you could look at an article I wrote on saving mail items to separate files.

Save all Outlook Mail Items to separate files[^]

Good luck!
 
Share this answer
 
v2

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