mirror of
https://github.com/simple-login/app.git
synced 2024-11-14 08:01:13 +01:00
15 lines
662 B
HTML
15 lines
662 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{{ render_text('This is an automated email from SimpleLogin.') }}
|
|
|
|
{{ render_text("We have recorded an attempt to send an email from your email <b>" + sender + "</b> to <b>" + reply_email + "</b>.") }}
|
|
|
|
{{ render_text(reply_email + 'is a special email address that only receives emails from its authorized user.') }}
|
|
|
|
{{ render_text('This user has been also informed of this incident.') }}
|
|
|
|
{{ render_text('If you have any question, you can contact us by replying to this email or consult our website at https://simplelogin.io.') }}
|
|
|
|
{{ render_text('Regards, <br />SimpleLogin Team.') }}
|
|
{% endblock %}
|