Reputation: 535
When Admin creates a new user account, an email should go to the created user's mail id. How can I enable this? Can I do it in "alfresco-global.properties", If yes, how?
Upvotes: 1
Views: 971
Reputation: 1978
I don't think that is possible out of the box. You could however implement this functionality with a java behavior. Be sure to not interfere with the emails that is sent out when inviting external users though otherwise those will get double emails.
Update after doing some research:
Well, someone made a decision to not make the notification option configurable in the create user gui. I have followed the calls made from the GUI down to the repository and it ends up calling a java method documented like this:
/**
* Create a Person with an optionally generated user name.
* This version doesn't notify them.
*
*/
Which means you have to do some coding to implement notifications in this scenario.
Upvotes: 1