NB! Remember to make a backup of your database before you delete.
Log on to phpmyadmin through your domain providers control panel
Go to SQL query
Trim the example query here so you find the members you would like to delete:
SELECT * FROM www1_users WHERE user_email LIKE '%touchend.com';
Remember to switch our the parts after % in the example above. You can also add an attribute for firstname and last name if they are the same on all members you would like to delete.
Run the Delete command:
DELETE from www1_users WHERE user_email LIKE '%touchend.com';
Note! Note! This can not be undone. So be very carefull not to empty all your members! You should use the same part in the select query from Where

