{% extends 'base.html.twig' %} {% block title %}Webmail {% endblock %} {% block body %}
{% for e in emails %} {% if (e.recipient == app.user.email and e.type == 'inbox') or (e.sender == app.user.email and e.type == 'sent') or (e.recipient == app.user.email and e.type == 'trash') %} {% endif %} {% endfor %}
{{ e.senderName }} {{ e.subject }} {% if e.attachment != null %} {% endif %} {{ e.date|date("d/m/Y - H:i") }}
{% endblock %}