Email Search
{% if records|length == 0 %}
No results found.
{% endif %}
{% for e in records %}
{{ e.SUBJECT }}
Date: {{ e.DATE_SENT }} |
From: {{ e.EMAIL_FROM }} |
To: {{ e.EMAIL_TO }}
{{ e.STATUS }}
{% if e.ALERT == 'YES' %}
⚠️ Alert
{% endif %}
{% if e.BRIEF_DESCRIPTION %}
📝 {{ e.BRIEF_DESCRIPTION }}
{% endif %}
|
{% endfor %}