{% if profiles %}
{% for p in profiles %}
{{ p.email_address }}
{% if p.display_name %}
{{ p.display_name }}
{% endif %}
{{ sender_type_labels.get(p.sender_type, p.sender_type) }}
{% if p.email_types %}
{% for t in p.email_types %} {% set label = dict(email_type_options).get(t, t) %} {{ label }} {% endfor %}
{% endif %} {% if p.processing_instructions %}

{{ p.processing_instructions }}

{% endif %}
{% endfor %}
{{ profiles | length }} profile{{ 's' if profiles | length != 1 else '' }}
{% else %}

No sender profiles yet.

Click + New Profile or use the Profile Sender button on any email log entry.

{% endif %}