eventcally/project/templates/email/test_email.html
2023-03-24 21:45:34 +01:00

6 lines
252 B
HTML

{% extends "email/layout.html" %}
{% from "_macros.html" import render_email_button %}
{% block content %}
<p>{{ _('This is a test mail') }}</p>
{{ render_email_button(url_for('home', _external=True), _('Click here to open the site')) }}
{% endblock %}