2020-07-12 11:46:21 +02:00
|
|
|
{% extends 'mails/base_layout.mjml.njk' %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<mj-section>
|
|
|
|
<mj-column>
|
|
|
|
<mj-text mj-class="title">
|
2020-07-20 17:32:32 +02:00
|
|
|
New user account on {{ app.name }}
|
2020-07-12 11:46:21 +02:00
|
|
|
</mj-text>
|
|
|
|
<mj-text>
|
2020-07-20 17:32:32 +02:00
|
|
|
A new user is pending review on {{ app.name }}.
|
2020-07-24 13:00:20 +02:00
|
|
|
<br>
|
2020-07-20 17:32:32 +02:00
|
|
|
Username: {{ username }}
|
2020-07-12 11:46:21 +02:00
|
|
|
</mj-text>
|
|
|
|
|
2020-07-24 13:00:20 +02:00
|
|
|
<mj-text><a href="{{ link | safe }}">Go to account reviews</a></mj-text>
|
2020-07-12 11:46:21 +02:00
|
|
|
</mj-column>
|
|
|
|
</mj-section>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block text %}
|
2020-07-20 17:32:32 +02:00
|
|
|
Hi!
|
|
|
|
A new user is pending review on {{ app.name }}.
|
2020-07-12 11:46:21 +02:00
|
|
|
|
2020-07-20 17:32:32 +02:00
|
|
|
Username: {{ username }}
|
|
|
|
To review this account, please follow this link: {{ link|safe }}
|
2020-07-12 11:46:21 +02:00
|
|
|
{% endblock %}
|