{{ a.subject }}
{% endif %}
{{ a.body }}
{% if a.attachments %}
{% set imgs = a.attachments|selectattr('is_image')|list %}
{% set files = a.attachments|rejectattr('is_image')|list %}
{% if imgs %}
{% endif %}
{% if files %}
{% for att in files %}
📎 {% if att.id %}{{ att.filename }}{% else %}{{ att.filename }}{% endif %}
{% endfor %}
{% endif %}
{% endif %}