mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 20:09:09 +08:00
Re-applying logic to ask for an email read notification from 7c725bf2ec
This commit is contained in:
parent
c8c5196b18
commit
049cc6a371
@ -10,6 +10,7 @@ namespace Orchard.Email.Models {
|
||||
public string FromName { get; set; }
|
||||
public string Bcc { get; set; }
|
||||
public string Cc { get; set; }
|
||||
public bool NotifyReadEmail { get; set; }
|
||||
/// <summary>
|
||||
/// IEnumerable of strings representing attachments paths
|
||||
/// </summary>
|
||||
|
@ -57,6 +57,7 @@ namespace Orchard.Email.Services {
|
||||
FromName = Read(parameters, "FromName"),
|
||||
Bcc = Read(parameters, "Bcc"),
|
||||
Cc = Read(parameters, "CC"),
|
||||
NotifyReadEmail = bool.TryParse(Read(parameters, "NotifyReadEmail"), out var notify) && notify,
|
||||
Attachments = (IEnumerable<string>)(parameters.ContainsKey("Attachments")
|
||||
? parameters["Attachments"]
|
||||
: new List<string>()
|
||||
@ -133,6 +134,10 @@ namespace Orchard.Email.Services {
|
||||
mailMessage.ReplyTo.AddRange(ParseRecipients(emailMessage.ReplyTo));
|
||||
}
|
||||
|
||||
if (emailMessage.NotifyReadEmail) {
|
||||
mailMessage.Headers.Add("Disposition-Notification-To", mailMessage.From.ToString());
|
||||
}
|
||||
|
||||
_smtpClientField.Value.Send(mailMessage);
|
||||
}
|
||||
catch (Exception e) {
|
||||
|
Loading…
Reference in New Issue
Block a user