From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/website_mail_channel/models/mail_mail.py | 34 +++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 addons/website_mail_channel/models/mail_mail.py (limited to 'addons/website_mail_channel/models/mail_mail.py') diff --git a/addons/website_mail_channel/models/mail_mail.py b/addons/website_mail_channel/models/mail_mail.py new file mode 100644 index 00000000..271e245e --- /dev/null +++ b/addons/website_mail_channel/models/mail_mail.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import api, models, tools, _ +from odoo.addons.http_routing.models.ir_http import slug + + +class MailMail(models.Model): + _inherit = 'mail.mail' + + def _send_prepare_body(self): + """ Short-circuit parent method for mail groups, replace the default + footer with one appropriate for mailing-lists.""" + if self.model == 'mail.channel' and self.res_id: + # no super() call on purpose, no private links that could be quoted! + channel = self.env['mail.channel'].browse(self.res_id) + base_url = self.env['ir.config_parameter'].sudo().get_param('web.base.url') + vals = { + 'maillist': _('Mailing-List'), + 'post_to': _('Post to'), + 'unsub': _('Unsubscribe'), + 'mailto': 'mailto:%s@%s' % (channel.alias_name, channel.alias_domain), + 'group_url': '%s/groups/%s' % (base_url, slug(channel)), + 'unsub_url': '%s/groups?unsubscribe' % (base_url,), + } + footer = """_______________________________________________ + %(maillist)s: %(group_url)s + %(post_to)s: %(mailto)s + %(unsub)s: %(unsub_url)s + """ % vals + body = tools.append_content_to_html(self.body, footer, container_tag='div') + return body + else: + return super(MailMail, self)._send_prepare_body() -- cgit v1.2.3