{% extends 'traffic/settings/index.html' %} {% block toolbar_smtp %}class="active"{%endblock%} {% block settings_comment %}

This page contains optional settings for SMTP mailer connector used when a periodic report needs to be sent to the designated e-mail addresses.

{% endblock %} {% block settings_content %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}{{ error|escape }}{% endfor %}
{% endif %}
{% csrf_token %}
{{form.smtp_server}} {% if form.smtp_server.errors %} {{form.smtp_server.errors|striptags}} {% else %} Specify the name of the server to use for outbound SMTP connections. For example, smtp.gmail.com or smtp.office365.com. {%endif%}
{{form.smtp_port}} {% if form.smtp_port.errors %} {{form.smtp_port.errors|striptags}} {% else %} Specify the TCP port of the remote SMTP server to connect to. For example, 465 or 587. {%endif%}
{{form.smtp_username}} {% if form.smtp_username.errors %} {{form.smtp_username.errors|striptags}} {% else %} Specify user name for SMTP connector, for example proxy@example.lan. {%endif%}
{{form.smtp_password}} {% if form.smtp_password.errors %} {{form.smtp_password.errors|striptags}} {% else %} Specify password for SMTP connector. {%endif%}
{{form.smtp_test_email}} {% if form.smtp_test_email.errors %} {{form.smtp_test_email.errors|striptags}} {% else %} Specify the e-mail addresses of the recipients for the test message. Only applicable if you click Send Test Message button below. {%endif%}
Send Test Message
{% endblock %}