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
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
2
Replies
3888
Tampilan
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
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
0
Jan 18
|
2751 | ||
|
2
Agu 17
|
15832 | ||
|
4
Apr 25
|
6962 | ||
|
1
Jan 18
|
5542 | ||
|
0
Mei 17
|
5256 |
Check this module , https://www.odoo.com/apps/modules/8.0/wct_email_auto_resend/