diff --git a/account_invoice_overdue_reminder/wizard/overdue_reminder_wizard.py b/account_invoice_overdue_reminder/wizard/overdue_reminder_wizard.py index 51d26b024..2666098ba 100644 --- a/account_invoice_overdue_reminder/wizard/overdue_reminder_wizard.py +++ b/account_invoice_overdue_reminder/wizard/overdue_reminder_wizard.py @@ -588,6 +588,10 @@ def generate_mail_vals(self): if self.company_id.overdue_reminder_attach_invoice: attachment_ids = self._get_attachment_ids(mail) mail.write({"attachment_ids": [Command.set(attachment_ids)]}) + # to make sure the sender receives the potential answer + self.commercial_partner_id.message_subscribe( + partner_ids=[self.env.user.partner_id.id] + ) vals = {"mail_id": mail.id} return vals