how to mass disable email notifications

dethfire

Well-known member
is there a way to disable email notifications for everyone (not just new members)? like a setting or sql query?
 
I'm not sure about the best way to go about only disabling notification emails, but you can stop all emails from being sent from your forum by adding the following to /library/config.php:

PHP:
// disable email
$config['enableMail'] = false;
 
I'm not sure about the best way to go about only disabling notification emails, but you can stop all emails from being sent from your forum by adding the following to /library/config.php:

PHP:
// disable email
$config['enableMail'] = false;
that is basically what I am looking for, thanks!!
 
Top Bottom