ListMailPRO Email Marketing Software Forums
ListMailPRO Email Marketing Software Forums => Development, Suggestions => Topic started by: sam0812 on November 01, 2004, 08:23:45 am
-
I want to select 20 out of 30 users to delete.
How can I do this without having to click
on each individuals delete button?
-
This is currently not possible. A future release will feature checkboxes as you would expect from a professional program.. :) For now, I recommend clicking the Delete button next to each user and hitting Enter. This method can be reasonably fast for up to a few dozen users. My apologies for the inconvenience.
-
Hi,
I would like to delete all of my AOL users from my Active list.
Is there a fast way of doing this without having to press the
delete button next to each user?
Thank you.
-
Do you know how to do custom SQL queries with PhpMyAdmin?
Alternately, you can login to ListMail and browse to editconf.php?customcmd=1
The query to permanently delete all aol.com users from list 1 would be:
delete from lm_users where email like '%@aol.com' and list = '1';
And to remove them from all lists
delete from lm_users where email like '%@aol.com';
Regards :D
-
Hi,
I get a "failed executing command" error when trying
to use the code:
delete from lm_users where email like '%@aol.com' and list = '1';
Are you sure that's the correct code to use?
Thanks.
---------------------------------------
Alternately, you can login to ListMail and browse to editconf.php?customcmd=1
The query to permanently delete all aol.com users from list 1 would be:
Code:
delete from lm_users where email like '%@aol.com' and list = '1';