Notification job must convert \n to <br /> now that IsNodyHtml is set to True
This commit is contained in:
@ -130,7 +130,7 @@ namespace Oqtane.Infrastructure
|
||||
mailMessage.Subject = notification.Subject;
|
||||
|
||||
//body
|
||||
mailMessage.Body = notification.Body;
|
||||
mailMessage.Body = notification.Body.Replace("\n", "<br />");
|
||||
|
||||
// encoding
|
||||
mailMessage.SubjectEncoding = System.Text.Encoding.UTF8;
|
||||
|
Reference in New Issue
Block a user