{% macro sms_message( body, recipient=None, name=None, id=None, edit_link=None, from=None, show_placeholder_for_recipient=False ) %} {% if name %}

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

{% endif %} {% if recipient is not none %}

To: {% if show_placeholder_for_recipient %} phone number {% else %} {{ recipient }} {% endif %}

{% endif %}
{% if from %} {{ from }} {% endif %} {{ body|nl2br }}
{% if id %}

Template ID: {{ id }}

{% endif %} {% endmacro %}