You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
488 B

  1. # Copyright 2019 Tecnativa - Jairo Llopis
  2. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
  3. from odoo import fields, models
  4. class MailMassMailingList(models.Model):
  5. _inherit = 'mail.mass_mailing.list'
  6. welcome_mail_template_id = fields.Many2one(
  7. string="Welcome mail template",
  8. comodel_name='mail.template',
  9. ondelete='set null',
  10. help="Mail template to be sent when a contact is subscribed from "
  11. "the website."
  12. )