Quote:
Originally Posted by giorgioarmani
PHP Code:
Number of Queued E-Mails 3,170
How do I get rid of these?
|
lol, if I were a genius I'd know how to get rid of those. I don't know of any way except to go directly to the database and truncate the mailqueue table (but of course you might lose some "legitimate" emails if you do that).
Edit: I guess if the spam emails are all the same you could search for a keyword. Like if the subject has 'viagra' you could do this:
Code:
DELETE FROM mailqueue WHERE subject LIKE '%viagra%'