Are you sure you want to send this message to:
{% if recipients %}
{% if not is_recipients_dict %}
{% for recipient in recipients %}
- {{ recipient }}
{% endfor %}
{% else %}
{% for type, sub_recipients in recipients.items %}
{{ type }}
{% for recipient in sub_recipients %}
- {{ recipient }}
{% endfor %}
{% endfor %}
{% endif %}
{% else %}
This message has no recipients.
{% endif %}