MyBB Community Forums

Full Version: No email when PM sent
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I make it so that people don't get emails when they recieve PMs?
Its a "personal" option set in UCP, they must uncheck it ... ::

* Notify me by email when I recieve a new Private Message.

If you want to make it global, there are some "code-changes" that need to done =P

You can make this "easy" code change, even if they check the box it will has no effect cause the option is "hardcoded" in the usercp.php.

Open [ usercp.php ]

Find [ "pmnotify" => $mybb->input['pmnotify'], ]

Change to [ "pmnotify" => "no", ]

And run this query for assuring everyone has the same setting =P

UPDATE mybb_users SET pmnotify='no'