mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
b742f58829
* add a bit of spacing to email template that uses "call" a lot * apply djlint
44 lines
1.0 KiB
HTML
44 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% call text() %}
|
|
<h1>
|
|
Attempt to send an email from your alias <b>{{ alias }}</b> from an unknown IP address
|
|
</h1>
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
We have recorded an attempt to send the following email from your alias <b>{{ alias }}</b> from an unknown IP
|
|
address
|
|
<b>{{ ip }}</b>.
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
- From: <b>{{ alias }}</b>
|
|
<br />
|
|
- To: <b>{{ to_email }}</b>
|
|
<br />
|
|
- Subject: <b>{{ subject }}</b>
|
|
<br />
|
|
- Time: <b>{{ time.humanize() }}</b>
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
To prevent email-spoofing, SimpleLogin enforces the SPF (Sender Policy Framework).
|
|
Emails sent from an IP address that is <b>unknown</b> by your email service are refused by default.
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
However you can turn off this option by going to {{ mailbox_url }}.
|
|
{% endcall %}
|
|
|
|
{% call text() %}
|
|
Please only turn this protection off this if you know what you're doing :).
|
|
{% endcall %}
|
|
|
|
{{ render_text('Thanks,
|
|
<br />
|
|
SimpleLogin Team.') }}
|
|
{% endblock %}
|