I am thinking of using ERPNext as the backend and api source for an front end application and I want to stop sending email on user sign up and do the authentication for the front end?
Hi @Sagesrepo ,
If you wish to prevent the welcome email from being sent to the user, you can simply uncheck Send Welcome Email button before saving the user document.
1 Like
I mean in sign up process not for adding users manually
You can write backend script make the value zero
1 Like
Could you expand on this?
Add a server script with hook “before save”
doc.send_welcome_email = 0
https://frappeframework.com/docs/user/en/desk/scripting/server-script
1 Like