My master asked me to create a modul witch enherit of digest module and modify the mail template. So I tried the following code :
from odoo import api, fields, models, tools, _
class CostumeDigest(models.Model):
_name = 'costum.digest'
_inherit = 'digest.digest'
_description = 'Digest Personnalisé'
Now I don't know I can modify the mail template of my costume.digest.
Will someone help me please ?