MyBB Community Forums

Full Version: How do I....
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I set the email notify function for every user account to No?
hello there,

in the phpmyadmin
run this query
UPDATE mybb_users SET emailnotify='no' 

now to guarantee the same record "NO" in the database with each now join. Open member.php find

"emailnotify" => $emailnotify,
replace with
 "emailnotify" => "no",

regards
Thanks Smile