{% import "macros/alerts.html" as alerts %} {% import "macros/forms.html" as forms %} {% extends "admin/tenants/get/base.html" %} {% block tab %}
{% call alerts.info() %}

These settings allow you to configure the sender of transactional emails (welcome, forgot password, etc.). By default, emails will be sent by {{ default_from_name }} <{{ default_from_email }}>.

{% endcall %}
{{ forms.form_field(form.email_from_name) }} {{ forms.form_field(form.email_from_email) }} {{ forms.form_csrf_token(form) }} {% if error %} {% call alerts.error() %}

{{ error }}

{% endcall %} {% endif %}
{% if tenant.email_from_email and not email_provider.DOMAIN_AUTHENTICATION %}

The email provider configured on this Fief server doesn't support domain authentication. The transactional emails will be sent by {{ tenant.email_from_email }} but it's possible they will be marked as spam by email clients.

{% elif tenant.email_domain %}
Domain authentication
{% if tenant.email_domain.is_verified() %}

The email address domain {{ tenant.email_domain.domain }} is correctly authenticated. Transactional emails will be sent through this address.

{% else %}

The email address domain {{ tenant.email_domain.domain }} is not authenticated. Transactional emails will not be sent through this address. Click on the button below to see the details about your domain authentication.

{% endif %} Manage domain authentication
{% endif %} {% endblock %}