Skip to Content
Menu
This question has been flagged
2 Replies
4325 Views

How can I create mass(resend) mail for all failed emails.

Avatar
Discard
Best Answer

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

Avatar
Discard
Related Posts Replies Views Activity
0
Jan 18
3269
2
Aug 17
16565
4
Apr 25
7526
1
Jan 18
6004
0
May 17
5835