fix: 异常邮件正文未折行

This commit is contained in:
Argo Zhang 2020-02-25 13:17:15 +08:00
parent e8c39fb25e
commit c9c32da5be
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ namespace Bootstrap.Client.Extensions
}
// 合并消息
content.AppendLine(msg.Message.Replace("\\r\\n", "<br>").Replace("\\n", "<br>"));
content.AppendLine(msg.Message.Replace("\\r\\n", "<br>").Replace("\\n", "<br>").Replace("\r\n", "<br>").Replace("\n", "<br>"));
}
if (sender != null && mail != null)
{