{% extends "base.html" %} {% block title %}Emails Outlook{% endblock %} {% block content %}

Emails de {{ account.email }}

Retour
{% if mails %}
{% for mail in mails %}
{{ mail.subject or '(sans sujet)' }}

De: {{ mail.from_name or mail.sender_email or 'Inconnu' }} {% if mail.from_email %}<{{ mail.from_email }}>{% endif %}

{{ mail.received_at.strftime('%d/%m/%Y %H:%M') if mail.received_at else '-' }}
{% if mail.has_attachments %} {% endif %}

{{ mail.body_preview[:200] }}{% if mail.body_preview|length > 200 %}...{% endif %}

{% endfor %}
{% else %}
Aucun email synchronisé. Cliquez sur "Synchroniser" pour récupérer vos emails.
{% endif %}
{% endblock %}