PDA

View Full Version : Stop Notifications email


Manoel J?nior
11-11-2012, 08:22 PM
How do I stop all notifications subscriptions are sent by email to users. I would do this through a SQL query.

John Lester
11-11-2012, 10:41 PM
Thread subscriptions for all users? Or other email notifications (if so which ones)?

Manoel J?nior
11-12-2012, 03:17 PM
How do I stop all notifications subscriptions are sent by email to users. I would do this through a SQL query.
Hello John,

I want Thread subscriptions for all users!

John Lester
11-16-2012, 09:35 PM
Ok this should (my hard drive crashed so I can't test it on the libraries computer :D ) set everyone's thread subscriptions to "through control panel only". If you want to change them to "do not subscribe" replace 0 with -1.


UPDATE subscribethread SET emailupdate = 0 WHERE emailupdate IN (1, 2, 3)

Manoel J?nior
11-17-2012, 07:11 PM
Thanks dude, i'll test!