mirror of https://github.com/OCA/social.git
commit
7286545d2f
|
@ -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"),
|
||||
|
|
|
@ -3,3 +3,4 @@
|
|||
* Giuseppe Borruso <gborruso@dinamicheaziendali.it>
|
||||
* Laurence Labusch <lala@labiso.de>
|
||||
* Dani Forga
|
||||
* Akim Juillerat <akim.juillerat@camptocamp.com>
|
||||
|
|
Loading…
Reference in New Issue