When you open the contact there is a yellow ‘Bounced’ ‘tag’ kinda thing under the image.
Click on the X.
Also: You can see the bounce reason if you hoover the contact.
BTW. What kind of bounce management errors? Amazon is pretty reliable. Make sure you are not bouncing too much, because its really hard to crawl back to Amazon after they suspended you.
Do not bounce more than 5% in average. Above 10% you can kiss your SES account goodbye.
These are your bounces: SELECT * FROM "lead_donotcontact" WHERE reason = 2
If you are happy with the results, you can delete them: DELETE FROM "lead_donotcontact" WHERE reason = 2
Your contacts won’t be deleted, just the status. If you want to delete only recent bounces, you can add the date_added column to your query and use the proper filter.
Hi Joeyk,
This solution delete the “do not contact” and the “bounced” state from the contact?
I only want to delete the bounced state from 4000 contacts from gmail. We had a problem with Gmail and all these emails are in a bounced state. It’s also possible to filter through Gmail emails to do this in Mysql table?.
Thanks in advance
I would definitely filter for the date when the problem occured. And maybe you get it to work if you do some kind of a join statement with the contact table. But maybe it could be easier to connect to an automation system like n8n and resolve the issue via API