{% extends 'base.html' %} {% block title %} {{ address_name }} - Fake Email Server {% endblock %} {% block content %} {% if email_list %} {% for type in content_types %} {% endfor %} {% for msg in email_list %} {% for type in content_types %} {% if type in msg and type != 'html' %} {% elif type == 'html' %} {% endif %} {% endfor %} {% endfor %}
Msg ID Format Headers{{ type }}
{{ loop.index }} {{ msg['content_type'] }} {% for header in msg['headers'] %} {{header[0]}} {{header[1]}}
{% endfor %}
{% if type.startswith('attachment') %} {{msg[type]}} {% else %}
                        {{msg[type]}}
                      
{% endif %}
{% else %}
No emails recorded for this address
{% endif %} {% endblock %}