Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am a freshers in asp .net i am developing a mail provider web site for that i want to read a mail status whether the mails i sent are read or not so please help me for same.... comment a link for that or give a code how to read a status... thanks in advance :)
Posted
Updated 29-Oct-13 0:11am
v5

It is not a guaranteed status, as it can be disabled by the person receiving the mail. For more information see https://www.google.com/search?q=read+receipt+smtp[^].
 
Share this answer
 
If you're using the System.Net.Mail namespace you can add a header to the email to request a read receipt:

XML
message.Headers.Add("Disposition-Notification-To", "<address@yourdomain.com>");
 
Share this answer
 
v2
Follow my previous answer- Track Email - Get Response when Email is Read[^].
 
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