@Poremsky.com

Tips & Tricks for Windows, Office, and Whatever

  • Home
  • Windows
  • Office
  • Web Design
  • WordPress
  • Internet Explorer

Undo bounces in Email Marketer

Published on November 16, 2012 Last reviewed on May 3, 2017

I use the email marketer software from Interspire for my mailing lists and one week, yahoo.com bounced several hundred addresses. I knew most of the addresses were valid because one of the bounced addresses was my own, plus the bounce rate was 20x higher than normal.

Unfortunately, there is no way to bulk undo the bounce status in Email Marketer. I could edit each subscription manually but that would take "forever". I looked at the database in MySQL and saw that I could change the 'bounced' field to 0 to make the subscribers active again.

I used this SQL query to see all of the yahoo addresses and try to identify the bounced value that represented the subscribers who were bounced on the date in question:

select * from `db`.`email_list_subscribers`WHERE `domainname` = "@yahoo.com"

Once I decided on the date value to use, I used this query to look over the records that I wanted to update:

select * from `db`.`email_list_subscribers`WHERE `bounced` > 1351821100 AND`domainname` = "@yahoo.com"

Satisfied that the list included only the subscribers removed on the date in question, I used this query to change the bounced field to 0:

update `db`.`email_list_subscribers` set `bounced` = 0 WHERE `bounced` > 1351821100 AND `domainname` = "@yahoo.com";

This query did not change the bounce counts in the statistics, it only set the affected subscribers back to Active.

Share this:

  • Facebook
  • LinkedIn
  • Twitter
  • Print
Subscribe
Notify of
2 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

Eyal
August 11, 2013 4:40 am
#85

Did you find a solution? I have the same problem...

0
Reply
Diane Poremsky(@dporemsky)
Author
Reply to  Eyal
August 13, 2013 2:05 pm
#94

No, I don't know why they bounce in bulk. It doesn't happen often, and the messages aren't spammy.

0
Reply

Recent Posts

  • Use a JavaScript bookmarklet to open an archive for a webpage
  • How to fix records that are all in one column
  • Change Password or Pin Complexity after removing from Intune
  • Server drafts location is not valid error message
  • What is the Brown File Box Icon on Files in Windows 11?

Recent Comments

  • FUAD on Remove Office Licenses from Windows
  • Brian DuBridge on Add the Recent Items Folder to Windows 10 Quick Access
  • Renee Moodie on Remove Office Licenses from Windows
  • John P on Remove Office Licenses from Windows
  • Puja on Remove Office Licenses from Windows
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

© 2025 · @Poremsky.com

wpDiscuz
Go to mobile version
You are going to send email to

Move Comment