我向客户发送发票和警告/提醒,现在这些邮件应标有 Deliverynotification 和 Readnotification 。所以,我知道客户什么时候收到并阅读发票。
MailMessage email = new MailMessage();
email.Priority = MailPriority.Normal;
email.DeliveryNotificationOptions = DeliveryNotificationOptions.OnSuccess; // Deliverynotification?
email.Attachments.Add(new Attachment(docDunPath));
email.Attachments.Add(new Attachment(docInvoicePath));
email.Subject = "-----------";
email.IsBodyHtml = true;
email.Body = MailText;
到目前为止一切正常,我只想在收件人阅读邮件时设置自动回复选项。所以,我可以肯定他看到了他的发票。
答案 0 :(得分:0)
因此,在意识到我使用了 System.Net.Mail 之后,我切换到了 Microsoft.Exchange.WebServices ,它现在运行良好。
if ( $this->qv_isset($this->custom_store_url) ) {
$author = get_query_var( $this->custom_store_url );
} else { $author = ""; }