T
Asked
Hi there. What file would i edit to turn off the daily digest emails that members recieve. Thanks
- MSAnsweredHello,
User has the option to choose the subscription duration, daily, weekly or monthly. If you need to disable then you can update `subscription` to higher number than 3 to stop emails. You can run the following query after selecting your database
```sql
UPDATE `tec_users` SET `subscription` = '4';
```
It will update the subscription to 4 and system will not send digest any more.
Thank you - TAnsweredThank you.
- Login to Reply