{% extends theme('base.html') %} {% import 'macro/form.html' as fui %} {%- block title -%} {%- trans %}Emails{% endtrans -%} {%- endblock -%} {% block submenu %} {% trans %}Emails{% endtrans %} {% if features.has_oidc %} {% trans %}Applications{% endtrans %} {% trans %}Add an application{% endtrans %} {% trans %}Tokens{% endtrans %} {% trans %}Codes{% endtrans %} {% endif %} {% endblock %} {% block content %}

{{ _("Mail sending test") }}

{% if features.has_smtp %}
{% trans %} This form will send a dummy email to the address you want. This should be used for testing mail configuration. {% endtrans %}
{% call fui.render_form(form) %} {{ fui.render_field(form.email) }}
{% endcall %} {% else %}
{% trans %} No mail server has been configured. The mail sending test is disabled. {% endtrans %}
{% endif %}

{{ _("Email preview") }}

{{ _("Connectivity test") }}
{{ _("Password initialization") }}
{{ _("Password reset") }}
{{ _("Email verification") }}
{{ _("Invitation") }}
{{ _("Registration") }}
{{ _("Compromised password check failure") }}
{{ _("Email one-time password") }}
{% endblock %}