Disable email notifications for a user. This will also disable the email contact if they have it set to yes.
123456 need to edited to the users ID
123456 need to edited to the users ID
Code:
SET @user_id = 123456;UPDATE phpbb_user_notifications SET notify = 0 WHERE user_id = @user_id AND method = 'notification.method.email'; UPDATE phpbb_users SET user_allow_viewemail = 0 WHERE user_id = @user_id;
Statistics: Posted by thecoalman — Fri Nov 08, 2024 11:48 am