Outlook Desktop Live Sync

Status: Connected
{% if emails %} {% for email in emails %} {# Render Root/Parent Thread Level node block components #}
From: {{ email.sender }} Received: {{ email.received_at|date:"Y-m-d H:i:s" }}
{{ email.subject }} {% if email.sender == 'Automation System' %} Automated Reply {% elif email.is_thread_reply %} Thread Reply / Forward {% endif %}
{% if email.recipients %}
To: {{ email.recipients }}
{% endif %} {% if email.cc_recipients %}
Cc: {{ email.cc_recipients }}
{% endif %}
{# Check for Nested Replies Loop Tree Layer #} {% 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 {% else %} Thread Reply / Forward {% endif %}
{% if reply.recipients %}
To: {{ reply.recipients }}
{% endif %} {% if reply.cc_recipients %}
Cc: {{ reply.cc_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 %}