MyBB Community Forums

Full Version: subscription mode
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all,
Is there a way to set by default:
1- Notify by email when new private message is received.
2- Default thread subscription mode "Instant email notification".

Or is there a plugin which allows me to change subscription mode for a group of members at once??

Thanks in advance.

Run these two queries:
UPDATE `mybb_users` SET `receivepms` = '1';
UPDATE `mybb_users` SET `subscriptionmethod` = '2'; 

This will set the same permissions for all existing users.
Thanks all For support Smile