From bfcf7b0416db2c2330097c0e956baee72b437563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= <tde@odoo.com> Date: Fri, 25 Oct 2019 12:35:00 +0000 Subject: [PATCH] [FIX] mail: correctly format rejection email moderation content When an incoming email on a channel is rejected, an email is sent to the original author to inform him of the rejection. This email contains the original email content added in a generic rejection email. This original content was however considered as plaintext and escaped. Result was quite hard to read. As content is sanitized we can safely append it to the rejection email as valid html. Task ID 2121319 PR #39978 --- addons/mail/models/mail_message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/models/mail_message.py b/addons/mail/models/mail_message.py index 0fde83cebfe3..e460aeb98645 100644 --- a/addons/mail/models/mail_message.py +++ b/addons/mail/models/mail_message.py @@ -1187,7 +1187,7 @@ class Message(models.Model): else: email_from = self.env.company.catchall - body_html = tools.append_content_to_html('<div>%s</div>' % tools.ustr(comment), msg.body) + body_html = tools.append_content_to_html('<div>%s</div>' % tools.ustr(comment), msg.body, plaintext=False) vals = { 'subject': subject, 'body_html': body_html, -- GitLab