X
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.
- MSAnsweredHello,
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