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