app-MAIL-temp/templates/emails/transactional/activation.html

12 lines
448 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
{{ render_text("Hi " + name) }}
{{ render_text("Thank you for choosing SimpleLogin.") }}
2020-02-12 06:44:32 +01:00
{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the button below within 1 hour.") }}
{{ render_button("Verify email", activation_link) }}
2020-02-12 06:44:32 +01:00
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
{{ raw_url(activation_link) }}
{% endblock %}