2020-04-03 23:39:07 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_text('This is an automated email from SimpleLogin.') }}
|
2020-04-03 23:39:07 +02:00
|
|
|
{{ render_text("We have recorded an attempt to send an email from your email <b>" + sender + "</b> to <b>" + reply_email + "</b>.") }}
|
2020-07-05 11:44:03 +02:00
|
|
|
{{ render_text(reply_email + ' is a special email address that only receives emails from its authorized user.') }}
|
2020-04-03 23:39:07 +02:00
|
|
|
{{ render_text('This user has been also informed of this incident.') }}
|
2020-08-22 18:38:44 +02:00
|
|
|
{{ render_text('If you have any question, you can contact us by replying to this email or consult our website at ' ~ LANDING_PAGE_URL ~ '.') }}
|
2022-06-29 11:28:26 +02:00
|
|
|
{{ render_text('Regards,
|
|
|
|
<br />
|
|
|
|
SimpleLogin Team.') }}
|
2020-04-03 23:39:07 +02:00
|
|
|
{% endblock %}
|