Hi team NodeBB, any one please help me Is there any option in setting , When someone replies in the forum to any post, the reply should also go in the email to the author with below additional details
- topic title :-
- reply Message :-
- Link :- jump to below reply directly
You must log in or # to comment.
Hi vijay-kumavat – yes, in the user settings, ensure that the user has changed this to “Email only” or “both”


You can run a query in mongodb to update all the user settings. The below would set everyone to Notification and email.
db.objects.updateMany({ _key: /^user:\d+:settings/ }, { $set: { "notificationType_new-reply": "notificationemail" } });`Thanks Julian,
I have noticed that this setting only applies to new users who join after the notification change. Existing users need to update it individually from their own accounts.
is their any way to apply this for all users?
But this method has not work for me



