Reputation: 61
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)?
Upvotes: 6
Views: 5663
Reputation: 345
MailMessage SendMail = new MailMessage();
//other code to configure to, from, subject, body etc...
//for read receipt
SendMail.Headers.Add ("Disposition-Notification-To", "[email protected]");
//for delivery receipt
SendMail.DeliveryNotificationOptions = DeliveryNotificationOptions.OnSuccess
Upvotes: 14