swaf/src/assets/views/mails/pending_account_review.mnjk

27 lines
710 B
Plaintext

{% extends 'mails/base_layout.mnjk' %}
{% block body %}
<mj-section>
<mj-column>
<mj-text mj-class="title">
New user account on {{ app.name }}
</mj-text>
<mj-text>
A new user is pending review on {{ app.name }}.
<br>
Username: {{ username }}
</mj-text>
<mj-text><a href="{{ link | safe }}">Go to account reviews</a></mj-text>
</mj-column>
</mj-section>
{% endblock %}
{% block text %}
Hi!
A new user is pending review on {{ app.name }}.
Username: {{ username }}
To review this account, please follow this link: {{ link|safe }}
{% endblock %}