Resource icon

Turn Off Email Notifications

maybe someone will need it. Turns off notifications to those whose e-mail address is hotmail.

UPDATE xf_user_option SET email_on_conversation = 0, creation_watch_state = 'watch_no_email', interaction_watch_state = 'watch_no_email' where user_id IN (select t.user_id from xf_user t where t.email like '%hotmail%')

UPDATE xf_forum_watch SET send_email = 0 where user_id IN (select t.user_id from xf_user t where t.email like '%hotmail%')

UPDATE xf_thread_watch SET email_subscribe = 0 where user_id IN (select t.user_id from xf_user t where t.email like '%hotmail%')
 
Last edited:
Top Bottom