-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send password to new users #22991
Comments
You can't do it simply like that. You also need to modify core/settings/controller/userscontroller.php Lines 383 to 387 in 4d69e56
|
Shouldn't be development specific stuff asked at the developers mailinglist instead of the bugtracker? If this is also a feature request its also a duplicate of #17398 |
Yes.
Thanks 🚀 . I thought it was but couldn't find the original issue 🙈 |
Thanks @LukasReschke for the quick aswer. Problem solved. @RealRancor It's also a feature request, sory for the duplicate |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Hi guys,
When creating a new user, I can check the checkbox "Send e-mail". After creating a user, the e-mail containing the connection informations will be sent to the new user.
I'm trying to modify the file core/settings/templates/email.new_user.php to add the password field.
I change
15. print_unescaped($l->t('Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href="%s">%s</a><br><br>', array($theme->getName(), $_['username'], $_['url'], $_['url'])));
To
print_unescaped($l->t('Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Your password: %s<br>Access it: <a href="%s">%s</a><br><br>', array($theme->getName(), $_['username'],$_['password'], $_['url'], $_['url'])));
When the user receive the e-mail, the password field is blank... can someone help me?
Thanks
The text was updated successfully, but these errors were encountered: