Outlook Desktop Live Sync

Status: Connected
{% if emails %} {% for email in emails %}
From: {{ email.sender }} Received: {{ email.received_at|date:"Y-m-d H:i:s" }}
{{ email.subject }} {% if email.is_thread_reply %} Thread Reply {% endif %}
{% if email.recipients %}
To: {{ email.recipients }}
{% endif %} {% if email.cc_recipients %}
Cc: {{ email.cc_recipients }}
{% endif %}
{% if email.replies %}
{% for reply in email.replies %}
From: {{ reply.sender }} Received: {{ reply.received_at|date:"Y-m-d H:i:s" }}
{{ reply.subject }} {% if reply.sender == 'Automation System' %} Automated Reply {% endif %}
{% if reply.recipients %}
To: {{ reply.recipients }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% else %}

No data parsed inside the local database context.

Ensure your background execution daemon is running actively via the terminal tool: django-outlook-daemon

{% endif %}