{% extends "base.html" %} {% block title %}{{ mail.subject|truncate(50, true) }} - Outlook{% endblock %} {% block content %}

đź“§ Email

Retour Ă  la liste
{% if not mail.is_read %} {% endif %}
{{ mail.subject }}
{% if mail.importance == 'high' %} Urgent {% elif mail.importance == 'low' %} Faible priorité {% endif %} {% if mail.is_read %} Lu {% else %} Non lu {% endif %}
Expéditeur
{{ mail.sender }} {% if mail.sender_email %}
{{ mail.sender_email }} {% endif %}
Date et heure
{{ mail.received_at.strftime('%d/%m/%Y Ă  %H:%M') }}
Reçu le {{ mail.received_at.strftime('%A, %d %B %Y') }}
{% if mail.has_attachments %}
Pièces jointes ({{ mail.attachment_count }})
Le téléchargement des pièces jointes n'est pas encore implémenté.
{% endif %}
Corps du mail
{% if mail.body_content %}
{{ mail.body_content }}
{% elif mail.body_preview %}

{{ mail.body_preview }}

{% else %}

Aucun contenu disponible

{% endif %}
Destinataires
{% if mail.from_name %} De: {{ mail.from_name }} <{{ mail.from_email }}> {% endif %}
Actions rapides
{% endblock %} {% block scripts %} {% endblock %}