So it seems that ever since I upgraded to 6.1.6 my mass emailer doesnt work. Maybe thats just a coincende though... Is there a debugger that I can enable to see if there is a certain email address messing everything up?
So it seems that ever since I upgraded to 6.1.6 my mass emailer doesnt work. Maybe thats just a coincende though... Is there a debugger that I can enable to see if there is a certain email address messing everything up? Happiness is a warm gun. |
I'm interested in this too, seems my email gets added to the queue but then never appears to the members. Running 6.1.6 like kernelpaniker. |
Okay, I got it working, here is how I fixed it. I noticed this post on expertzzz.com http://www.expertzzz.com/forumz/?action=goto&cat_id=1#action=goto&topic_id=18205 The person created a free mod but I dont want the users to be able to choose if they recieve the mass emails. So here is what I did admin/notifies.php look for this line : $res_eml = db_res("SELECT `ID` FROM `Profiles` WHERE `Status` <> 'Unconfirmed' AND `EmailNotify` = 'NotifyMe' $sex_filter_sql $age_filter_sql $country_filter_sql"); Change it to : $res_eml = db_res("SELECT `ID` FROM `Profiles` WHERE `Status` <> 'Unconfirmed' AND ( `EmailNotify` = 'NotifyMe' or `EmailNotify` = '1' ) $sex_filter_sql $age_filter_sql $country_filter_sql"); Then I went to my database via phpMyAdmin and exected this piece of code update `Profiles` set `EmailNotify`='1' Then I setup a new mass email and it seems like its working. Happiness is a warm gun. |
Update! While my last post fixes current members, anyone that signed up after I run the sql query will not recieve the mass mail. For some reason, the default for EmailNotify is set to 0 instead of 1. Just go to the Profiles table and change the structure of EmailNotify from 0 to 1. That should fix it for any new members that sign up. Happiness is a warm gun. |
Thanks for the info. I have been trying to find this solutions for days! |
Thanks this happen to me yestarday i send mass email i check my mail nothing empty no i see why thank's bro for this Post Reply - if you going to help - No for - bla bla bla bla |