Question: Subscription - Send Me Email When Someone Reply

Subscription - Send Me Email When Someone Reply

How to turn of Send me email when someone reply for all users by default. If someone need to use Send me email when someone reply then he could turn it on.

X

xyruxy

Asked
How to turn of Send me email when someone reply for all users by default. If someone need to use Send me email when someone reply then he could turn it on.
  • MS

    Mian Saleem

    Answered
    Hello,

    You can do so by running the queries below on your database

    ```sql
    UPDATE `tec_users` SET `subscription` = 4;
    ALTER TABLE `tec_users` CHANGE `subscription` `subscription` TINYINT(1) NULL DEFAULT '4';
    ```

    Thank you
  • Login to Reply