How to Delete all email ids other than Gmail ids from All Subscribers List

That's something you can do only from mysql directly, the query would be something like:
SQL:
DELETE FROM mw_list_subscriber WHERE email NOT LIKE '%@gmail.com';
But it's not tested, if you use it, test it first.
 
Back
Top