How can I create mass(resend) mail for all failed emails.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Progetti
- MRP
La domanda è stata contrassegnata
2
Risposte
4606
Visualizzazioni
Hi,
The above link i have commented seems to be of v8. As you want in v10, you can use this code in your function or from a cron job
mail_failed_list = self.env['mail.mail'].search([('state', '=', 'exception')])
for failed_mail in mail_failed_list:
failed_mail.state = 'outgoing'
Thanks
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati| Post correlati | Risposte | Visualizzazioni | Attività | |
|---|---|---|---|---|
|
|
0
gen 18
|
3561 | ||
|
|
2
ago 17
|
16942 | ||
|
|
4
apr 25
|
7828 | ||
|
|
1
gen 18
|
6260 | ||
|
|
0
mag 17
|
6133 |
Check this module , https://www.odoo.com/apps/modules/8.0/wct_email_auto_resend/