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:
- Müşteri İlişkileri Yönetimi
- e-Commerce
- Muhasebe
- Envanter
- PoS
- Project
- MRP
Bu soru işaretlendi
2
Cevaplar
3934
Görünümler
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
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Üye Olİlgili Gönderiler | Cevaplar | Görünümler | Aktivite | |
---|---|---|---|---|
|
0
Oca 18
|
2794 | ||
|
2
Ağu 17
|
15945 | ||
|
4
Nis 25
|
7034 | ||
|
1
Oca 18
|
5619 | ||
|
0
May 17
|
5320 |
Check this module , https://www.odoo.com/apps/modules/8.0/wct_email_auto_resend/