Bounce Cron Question

informacione

Beginner
Bounce cron processed the rows on acct-2019-10-15-0000.csv

After processing I re-wrote bounce rules.

How do I process the same file again?
 
However it's not recommended but if you still want to do it, you can do the following trick

1. Access Mumara Database and run the following query
Update `campaign_schedule_logs` set is_bounced = 0 where campaign_id = 'your_campaign_id';
(Replace your_campaign_id with your actual broadcast ID)

2. Delete from pmta_bounce where filename = 'your_file_name_you_want_to_process_again';
(Replace your_file_name_you_want_to_process_again with pmta file name that you want to process again)

PS: In fact you can delete all pmta filename entries from pmta_bounce table after this filename if you want them to process all afterwards
 
Back
Top