Merge branch 'dev' into preprod

This commit is contained in:
Darks 2020-07-21 22:39:13 +02:00
commit ce89adef56
Signed by: Darks
GPG Key ID: F61F10FA138E797C
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ def send_reset_password_mail(name, email):
token = ts.dumps(email, salt='email-confirm-key')
reset_url = f"https://{V5Config.DOMAIN}" \
+ url_for('reset_password', token=token)
subject = "Confirmez votre email pour compléter l'inscription"
subject = "Réinitialisation du mot de passe"
html = render_template('email/reset_password.html', reset_url=reset_url,
name=name)
body = render_template('email/reset_password.md', reset_url=reset_url,