{{ subject }}
{% if body.contentType == 'html' %}
{{ body.content | safe }}
{% else %}
{{ body.content }}
{% endif %}
{% if toRecipients or ccRecipients %}
{% if toRecipients %}
To: {% for recipient in toRecipients %}{{ recipient.emailAddress.name }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
{% if ccRecipients %}
{% if toRecipients %} | {% endif %}CC: {% for recipient in ccRecipients %}{{ recipient.emailAddress.name }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
{% endif %}
{{ conversationId }}