我们在应用程序中使用System.Net.Mail命名空间向用户发送电子邮件。 有没有办法在使用上述命名空间发送电子邮件时请求送货回执并阅读收据选项(也不使用任何第三方库)?
答案 0 :(得分:6)
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