{% macro email_message( subject, body, from_name=None, from_address=None, recipient=None, id=None, show_placeholder_for_recipient=False, show_id=False ) %}
{% 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 %}
...show full email
{% endmacro %}