mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
30 lines
792 B
HTML
30 lines
792 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% call text() %}
|
|
Hi {{ name }}
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
An email was sent to your alias <b>{{ alias.email }}</b> from its own mailbox
|
|
<b>{{ mailbox.email }}</b>.
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
SimpleLogin doesn't send this email <b>back</b> to your mailbox as it would be refused or hidden anyway by your email service. <br>
|
|
So no worries, there's nothing you need to do :).
|
|
{% endcall %}
|
|
|
|
{{ render_button("View the email", refused_email_url) }}
|
|
|
|
{% call text() %}
|
|
The email is automatically deleted in 7 days.
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
If you have any question, please reply to this email.
|
|
{% endcall %}
|
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
|
{% endblock %}
|