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:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
2
回复
3935
查看
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
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
0
1月 18
|
2801 | ||
|
2
8月 17
|
15983 | ||
|
4
4月 25
|
7052 | ||
|
1
1月 18
|
5625 | ||
|
0
5月 17
|
5330 |
Check this module , https://www.odoo.com/apps/modules/8.0/wct_email_auto_resend/