Re-applying logic to ask for an email read notification from 7c725bf2ec

This commit is contained in:
Benedek Farkas 2024-03-08 18:51:03 +01:00
parent c8c5196b18
commit 049cc6a371
2 changed files with 6 additions and 0 deletions

View File

@ -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>

View File

@ -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) {