{% extends 'mails/base_layout.mnjk' %}

{% block body %}
    <mj-section>
        <mj-column>
            <mj-text mj-class="title">
                Add this email address on {{ app.name }}
            </mj-text>
            <mj-text>
                Someone wants to add <strong>{{ mail_to }}</strong> to their account.
                <br><br>
                <strong>Do not click on this if this is not you!</strong>
            </mj-text>

            <mj-button href="{{ link | safe }}">
                Add <strong>{{ mail_to }}</strong> on {{ app.name }}
            </mj-button>
        </mj-column>
    </mj-section>
{% endblock %}

{% block text %}
    Hi!
    Someone wants to add {{ mail_to }} to their account.

    To add this email address, please follow this link: {{ link|safe }}
{% endblock %}