Outlook Desktop Live Sync
Status:
Connected
{% if emails %} {% for email in emails %}
{{ email.subject }}
{{ email.sender|slice:":1"|upper }}
{{ email.sender }}
{{ email.received_at|date:"Y-m-d H:i:s" }}
To:
{{ email.recipients }}
{% if email.cc_recipients %}
Cc:
{{ email.cc_recipients }}
{% endif %}
{{ email.html_body|safe }}
{% for reply in email.replies %}
{% if reply.sender == 'Automation System' %}
A
{% else %}
{{ reply.sender|slice:":1"|upper }}
{% endif %}
{{ reply.sender }}
{{ reply.received_at|date:"Y-m-d H:i:s" }}
{% if reply.recipients %}
To:
{{ reply.recipients }}
{% endif %}
{{ reply.html_body|safe }}
{% endfor %}
{% endfor %} {% else %}
No data parsed inside the local database context.
Ensure your background execution daemon is running actively.
{% endif %}