{% extends "webadmin/base.html" %} {% block "title" %}{% trans "Email Settings" %}{% endblock %} {% block "content" %}

{% trans "Email Settings" %}

{% trans %} This section allows you to configure all email related settings. {% endtrans %}

{% trans "Error Mails" %}

{% trans "Send error mails" %}
{{ form.send_error_mails.html }} {{ form.send_error_mails.errors }}
{% trans "Administrators" %}
{{ form.admin_mails.html }} {{ form.admin_mails.errors }}

{% trans "Mail Server Settings" %}

{% trans "Server address" %}
{{ form.mail_host.html }} {{ form.mail_host.errors }}
{% trans "User" %}
{{ form.mail_user.html }} {{ form.mail_user.errors }}
{% trans "Password" %}
{{ form.mail_pass.html }} {{ form.mail_pass.errors }}

{% trans "Mail Format" %}

{% trans "Sender address" %}
{{ form.mail_from.html }} {{ form.mail_from.errors }}
{% trans "Subject prefix" %}
{{ form.mail_prefix.html }} {{ form.mail_prefix.errors }}
{% trans "Subject suffix" %}
{{ form.mail_suffix.html }} {{ form.mail_suffix.errors }}
{% trans "Signature" %}
{{ form.mail_signature.html }} {{ form.mail_signature.errors }}
{% endblock %}