{% extends 'traffic/monitor/monitoring_form.html' %} {% block toolbar_smtp %}class="active"{%endblock%} {% block page_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%}
{% endblock %}