Quote:
Originally Posted by HappyFeet
This is a great Mod and I want to use it, I'm even interested in the Pro version.
However I noticed the "members" mailing list is ALL of my members which includes banned members. I went through and deleted them as subscribers and an hour later they were back as subscribers.
I do not want to email these spammers, how do I fix this? 
|
Deleting subscribers manually is not the right way. It's better to let the script to send once email to spammer and as they'll be bounce, they'll be automatically put in the blacklist.
Another way to work as you like, is to modify the file includes/cron/micronewsletter_members
Replace:
Code:
$sql = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."user ORDER BY userid ASC");
With:
Code:
$sql = $vbulletin->db->query_read("SELECT * FROM ".TABLE_PREFIX."user WHERE usergroupid<>8 ORDER BY userid ASC");
Maria