JamesBrown Well-known member Feb 4, 2024 #1 Is this possible? If so, can someone tell me how I might achieve this. Many thanks
Ozzy47 Well-known member Feb 4, 2024 #2 Add the following line into your src/config.php file: Code: $config['enableMail'] = false; Upvote 0 Downvote
JamesBrown Well-known member Feb 4, 2024 #3 Will that only stop watched thread notifications? Upvote 0 Downvote
Ozzy47 Well-known member Feb 4, 2024 #4 Ooops, I missed the thread title. You would have to run a query: Code: UPDATE `xf_thread_watch` SET email_subscribe = 0; Upvote 0 Downvote
Ooops, I missed the thread title. You would have to run a query: Code: UPDATE `xf_thread_watch` SET email_subscribe = 0;
JamesBrown Well-known member Feb 6, 2024 #5 Can someone help with a query that will uncheck this box for all users. Thanks Upvote 0 Downvote
R rdn Well-known member Feb 6, 2024 #6 Resource icon H Turn Off Email Notifications Mar 21, 2020 Turn off email notification for email, thread watch, forum watch Upvote 0 Downvote
Resource icon H Turn Off Email Notifications Mar 21, 2020 Turn off email notification for email, thread watch, forum watch
Mouth Well-known member Feb 6, 2024 #7 JamesBrown said: Can someone help with a query that will uncheck this box for all users. Thanks Click to expand... UPDATE xf_user_option SET interaction_watch_state = 'watch_no_email'; ... for notifications, but no emails. UPDATE xf_user_option SET interaction_watch_state = ''; ... for no notifications or emails. Upvote 0 Downvote
JamesBrown said: Can someone help with a query that will uncheck this box for all users. Thanks Click to expand... UPDATE xf_user_option SET interaction_watch_state = 'watch_no_email'; ... for notifications, but no emails. UPDATE xf_user_option SET interaction_watch_state = ''; ... for no notifications or emails.