diff --git a/mail_footer_notified_partners/models/mail_followers.py b/mail_footer_notified_partners/models/mail_followers.py index 1c7a993f..155b6921 100644 --- a/mail_footer_notified_partners/models/mail_followers.py +++ b/mail_footer_notified_partners/models/mail_followers.py @@ -57,7 +57,7 @@ class MailNotification(models.Model): ctx.update({ 'partners_to_notify': partners_to_notify, }) - return super(MailNotification, self)._notify( + return super(MailNotification, self.with_context(ctx))._notify( message_id, partners_to_notify=partners_to_notify, - force_send=force_send, user_signature=user_signature, context=ctx) + force_send=force_send, user_signature=user_signature)