Merge PR #1490 into 16.0

Signed-off-by hbrunn
pull/1519/head
OCA-git-bot 2024-12-06 10:58:20 +00:00
commit 7286545d2f
2 changed files with 7 additions and 2 deletions

View File

@ -2,12 +2,16 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import _, models
from odoo.tools import format_datetime
from odoo.tools import format_datetime, html_sanitize
class MailMessage(models.Model):
_inherit = "mail.message"
def _get_sanitized_body(self):
self.ensure_one()
return html_sanitize(self.body)
def _prep_quoted_reply_body(self):
return """
<div style="margin: 0px; padding: 0px;">
@ -29,7 +33,7 @@ class MailMessage(models.Model):
email_from=self.email_from,
date=format_datetime(self.env, self.date),
subject=self.subject,
body=self.body,
body=self._get_sanitized_body(),
signature=self.env.user.signature,
str_date=_("Date"),
str_subject=_("Subject"),

View File

@ -3,3 +3,4 @@
* Giuseppe Borruso <gborruso@dinamicheaziendali.it>
* Laurence Labusch <lala@labiso.de>
* Dani Forga
* Akim Juillerat <akim.juillerat@camptocamp.com>