{% if email.greeting %}
{{ email.greeting }}
{% endif %}
{% if email.intros %}
{% for intro in email.intros %}
{{ intro }}
{% endfor %}
{% endif %}
{% if email.dictionary %}
{% for d in email.dictionary %}
- {{ d.0 }}:
- {{ d.1 }}
{% endfor %}
{% endif %}
{% if email.actions %}
{% for action in email.actions %}
{% if action.instructions %}{{ action.instructions }} {% endif %}
{% endfor %}
{% endif %}
{% if email.outros %}
{% for outro in email.outros %}
{{ outro }}
{% endfor %}
{% endif %}
{{ email.signature }},
{{ branding.name }}
{% if email.actions %}
{% for action in email.actions %}
|
{{ branding.trouble_text | replace(from="{ACTION}", to=action.text) }}
{{ action.link }}
|
{% endfor %}
{% endif %}
|