From e841201944f2b7f8874c4f5967ddf67dd0c24bf6 Mon Sep 17 00:00:00 2001 From: Son NK Date: Wed, 12 Feb 2020 12:51:31 +0700 Subject: [PATCH] improve change-email template --- templates/emails/transactional/change-email.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/templates/emails/transactional/change-email.html b/templates/emails/transactional/change-email.html index 5f068281..e7d30618 100644 --- a/templates/emails/transactional/change-email.html +++ b/templates/emails/transactional/change-email.html @@ -2,9 +2,11 @@ {% block content %} {{ render_text("Hi " + name) }} - {{ render_text("You have asked to change your email to:
"+ new_email +".") }} - {{ render_text("Your current email is:
" + current_email + ".") }} - {{ render_text("To confirm, please click on the button below or use this link:
" + link + "
within 12 hours.") }} + {{ render_text("You want to change your email to "+ new_email +".") }} + {{ render_text("Your current email is " + current_email + ".") }} + {{ render_text("To confirm, please click on the button below within 12 hours.") }} {{ render_button("Change email", link) }} + {{ render_text('Thanks,
SimpleLogin Team.') }} + {{ raw_url(link) }} {% endblock %}