mirror of
https://github.com/simple-login/app.git
synced 2024-11-15 21:26:25 +08:00
11 lines
524 B
HTML
11 lines
524 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{{ render_text("Hi " + name) }}
|
|
{{ render_text("We have recorded an attempt to send an email from your alias <b>"+ alias +"</b> using <b>" + sender + "</b>.") }}
|
|
{{ render_text("Please note that sending from this alias only works from <b>" + mailbox_email + "</b>.") }}
|
|
{{ render_text("Indeed, only you (or the mailbox that owns <b>" + alias + "</b>) can send emails on behalf of this alias.") }}
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
|
{% endblock %}
|
|
|
|
|