From 4e4690596704d60c57c02d06c9da12fdb3ade8f9 Mon Sep 17 00:00:00 2001 From: Son NK Date: Wed, 12 Feb 2020 12:44:32 +0700 Subject: [PATCH] Improve activation email --- templates/emails/transactional/activation.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/emails/transactional/activation.html b/templates/emails/transactional/activation.html index fd5b7718..a4f8ed75 100644 --- a/templates/emails/transactional/activation.html +++ b/templates/emails/transactional/activation.html @@ -3,7 +3,9 @@ {% block content %} {{ render_text("Hi " + name) }} {{ render_text("Thank you for choosing SimpleLogin.") }} - {{ render_text("To get started, please confirm that " + email + " is your email address by clicking on the button below or use this link " + activation_link + " within 1 hour.") }} + {{ render_text("To get started, please confirm that " + email + " is your email address by clicking on the button below within 1 hour.") }} {{ render_button("Verify email", activation_link) }} + {{ render_text('Thanks,
SimpleLogin Team.') }} + {{ raw_url(activation_link) }} {% endblock %}