mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
13 lines
380 B
Python
13 lines
380 B
Python
# Copyright 2012-2017 Camptocamp SA
|
|
# Copyright 2017 Okia SPRL (https://okia.be)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class Mail(models.Model):
|
|
_inherit = 'mail.mail'
|
|
|
|
# use HTML fields instead of text
|
|
body_html = fields.Html('Rich-text Contents',
|
|
help="Rich-text/HTML message")
|