How is it possible that invoice reminders, when sent by email, are actually sent to the address stored as the reminder mail-address? Currently, reminders are sent to the default email address.
(odoo16)
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
How is it possible that invoice reminders, when sent by email, are actually sent to the address stored as the reminder mail-address? Currently, reminders are sent to the default email address.
(odoo16)
By default, Odoo uses the main partner email (field email) when sending invoice reminders.
If you want reminders to go to a specific address (e.g. a dedicated billing contact), you have two main options:
👉 This way, you separate the general contact email (for sales orders, quotations) from the billing email (for accounting reminders).
If you’re on Community and don’t see this option, you may need a customization (small module) to map reminders to a custom field
Hi,
In Odoo standard (v17/18), invoice reminders (from Accounting → Customers → Follow-up Reports / Reminders) are sent by email to the default email address of the customer (res.partner.email).
There is no built-in mechanism to use a different email address field like “reminder mail-address” out of the box.
- How to Customize
1- Add a custom field on res.partner (e.g. reminder_email).
2- Override the reminder sending logic (account_followup module → _send_email method) to check:
* If partner.reminder_email exists → use that
* Else → fallback to partner.email.
Eg :- email_to = partner.reminder_email or partner.email
Odoo will always use the customer’s main email for reminders. If you want a separate "reminder mail-address," you’ll need a small customization to override the reminder logic.
Hope it helps
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
Inscribirse