{% macro email_message( subject, body, name=None, edit_link=None, from_name=None, from_address=None, recipient=None, id=None, created_at=None, updated_at=None, versions_url=None, version=1, show_placeholder_for_recipient=False, show_id=False ) %} {% if name %}

{% if edit_link %} {{ name }} {% else %} {{ name }} {% endif %}

{% endif %} {% if version > 1 %} {% if updated_at %}

Last updated on {{ updated_at|format_date_normal }} see earlier versions

{% endif %} {% else %} {% if created_at %}

Created on {{ created_at|format_date_normal }}

{% endif %} {% endif %}
{% if from_name or subject %} {% if from_name and from_address %} {% endif %} {% if recipient is not none %} {% endif %} {% if subject %} {% endif %}
From {{ from_name }} <{{ from_address }}>
To {% if show_placeholder_for_recipient %} email address {% else %} {{ recipient }} {% endif %}
{% endif %}
{% endmacro %}