{% extends 'layout.twig' %} {% block header %} {% endblock %} {% block body %}

{{ mail.subject }}

From: {{ mail.from.text }}
{{ mail.date | date }}
{% if mail.html %}
{% elseif mail.textAsHtml %}
{{ mail.textAsHtml|raw }}
{% else %}

No content available

{% endif %}
{% if mail.attachments %}

Attachments

{% for attachment in mail.attachments %} 📎 {{ attachment.filename }} {% endfor %}
{% endif %}
{% endblock %}