Hi,
I'm looking for an easy and fast way to delete or unsubscribe a bunch of emails according to their domain name. Like all email *@virgin.net (email service stopped) or *@yopmail. Anyone has an easy way to do that ?
*@virgin.net
*@yopmail
Thanks.
You can run an SQL query in phpmyadmin, like:
DELETE FROM subscribers WHERE email LIKE “%@virgin.net%"
Best regards, Ben
Comments
Hi,
You can run an SQL query in phpmyadmin, like:
DELETE FROM subscribers WHERE email LIKE “%@virgin.net%"
Best regards,
Ben