mail from current user rather than admin

This commit is contained in:
Jean-Marie Place 2021-10-30 12:09:35 +02:00
parent 8f1e465280
commit 68ac7c293a
1 changed files with 2 additions and 1 deletions

View File

@ -153,6 +153,7 @@ def create_user_form(user_name=None, edit=0, all_roles=1):
"form. création ou edition utilisateur"
auth_dept = current_user.dept
auth_username = current_user.user_name
from_mail = current_user.email
initvalues = {}
edit = int(edit)
all_roles = int(all_roles)
@ -583,7 +584,7 @@ def create_user_form(user_name=None, edit=0, all_roles=1):
token = None
send_email(
"[ScoDoc] Création de votre compte",
sender=current_app.config["ADMINS"][0],
sender=from_mail, # current_app.config["ADMINS"][0],
recipients=[u.email],
text_body=render_template("email/welcome.txt", user=u, token=token),
html_body=render_template(