We are using System.Net.Mail namespace in our application to send emails to the users. Is there a way we can request a delivery receipt and read receipt options when sending emails using the above namespace (also without using any third party libraries)?
Asked
Active
Viewed 4,790 times
1 Answers
12
MailMessage SendMail = new MailMessage();
//other code to configure to, from, subject, body etc...
//for read receipt
SendMail.Headers.Add ("Disposition-Notification-To", "email@gmail.com");
//for delivery receipt
SendMail.DeliveryNotificationOptions = DeliveryNotificationOptions.OnSuccess

lamer lamer
- 315
- 6
- 14