Creating a read receipt using the MailMessage class?

  • Thread starter Thread starter Wade Wegner
  • Start date Start date
W

Wade Wegner

Hello,

Using the MailMessage class (or any other ASP.NET SMTP classes), I would
like to programmatically request a read receipt. Is this possible?

I have found an article that talked about a ReadReceipt property for CDO
1.2.1, but I have not been able to find a ASP.NET or MailMessage article
that specifically deals with this issue. Additionally, it appears that
utilizing an Outlook object this is also possible, but this system will not
be utilizing Outlook, just creating an email that is sent via Exchange 2000.

Any ideas or suggests are very much appreciated!

Thanks,

Wade
 
smtpMessage.Headers.Add("Disposition-Notification-To",
"(e-mail address removed)")

smtpMessage.Headers.Add("Return-Receipt-To","(e-mail address removed)")
 
Back
Top