fix code for smtp_session in inherit of send_email() Disable module base_mail_sender_bcc that just doesn't work in v16 ; as it's a design problem, I don't plan to fix it.
25 lines
896 B
Python
25 lines
896 B
Python
# Copyright 2017-2022 Akretion (http://www.akretion.com)
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Mail Sender Bcc',
|
|
'version': '18.0.1.0.0',
|
|
'category': 'Mail',
|
|
'license': 'AGPL-3',
|
|
'summary': "Always send a copy of the mail to the sender",
|
|
'description': """
|
|
Mail Sender Bcc
|
|
===============
|
|
|
|
With this module, when Odoo sends an outgoing email, it adds the sender as Bcc (blind copy) of the email.
|
|
""",
|
|
'author': 'Akretion',
|
|
'website': 'https://github.com/akretion/odoo-usability',
|
|
'depends': ['base'],
|
|
# I set it to False, because this module doesn't work because of send_validated_to in context
|
|
# cf method _prepare_email_message()
|
|
# We should now use the module mail_composer_cc_bcc from OCA/social (moved to OCA/mail)
|
|
'installable': False,
|
|
}
|