To see how many users /who are set to NotNotifyMe, you can run this SQL query
Code:
SELECT NickName FROM Profiles WHERE `EmailNotify` = 'NotNotifyMe'
You could run this SQL query to change everyone to NotifyMe
Code:
Update Profiles SET `EmailNotify` = 'NotifyMe'
or
change in periodic/notifies.php
Code:
$res_eml = db_res("SELECT `ID` FROM `Profiles` WHERE `Status` <> 'Unconfirmed' AND `EmailNotify` = 'NotifyMe' $sex_filter_sql $age_filter_sql $country_filter_sql");
to
Code:
$res_eml = db_res("SELECT `ID` FROM `Profiles` WHERE `Status` <> 'Unconfirmed' $sex_filter_sql $age_filter_sql $country_filter_sql");
but note - there is a sex, age and country filter that could also affect how many emails get sent out.
Bookmarks