使用System.Net.Mail请求交货收据和已读回执

时间:2014-04-26 14:49:43

标签: .net smtpclient system.net.mail

我们在应用程序中使用System.Net.Mail命名空间向用户发送电子邮件。 有没有办法在使用上述命名空间发送电子邮件时请求送货回执并阅读收据选项(也不使用任何第三方库)?

1 个答案:

答案 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