That table is for the forums and only tracks what forums they are subscribed too. Removing them from that table will also disable the on screen notifications . Note it doesn't disable topic, PM and other email notifications.
The type of notification for everything is set in phpbb_user_notifications. You can use this SQL to remove all email notifications.
You need to replace 123456 with the users ID. Note the user can always set it back.
The type of notification for everything is set in phpbb_user_notifications. You can use this SQL to remove all email notifications.
Code:
UPDATE `phpbb_user_notifications` SET `notify`=0 WHERE `method`="notification.method.email" AND `user_id` =123456
Statistics: Posted by thecoalman — Fri Aug 23, 2024 2:29 pm