{% if header_title %}{{ header_title }}{% else %}{% trans "Your booking is confirmed" %}{% endif %}
{% if greeting_template %}{{ greeting_template }}{% else %}{% if booker_name %}{% blocktrans with name=booker_name %}Hi {{ name }},{% endblocktrans %}{% else %}{% trans "Hi," %}{% endif %}{% endif %}
{% if intro_copy %}
{{ intro_copy|linebreaks }}
{% else %}
{% trans "We've reserved your slot. Details below." %}
{% endif %}
| {% if label_datetime %}{{ label_datetime }}{% else %}{% trans "Date & time" %}{% endif %} |
{% if meeting_start %}
{{ meeting_start|date:"l, j F Y" }}
{{ meeting_start|date:"H:i" }} – {{ meeting_end|date:"H:i" }} ({{ timezone }})
{% endif %}
|
| {% if label_email %}{{ label_email }}{% else %}{% trans "Email" %}{% endif %} |
{{ booker_email }} |
{% if booker_phone %}
| {% if label_phone %}{{ label_phone }}{% else %}{% trans "Phone" %}{% endif %} |
{{ booker_phone }} |
{% endif %}
{% if booker_company %}
| {% if label_company %}{{ label_company }}{% else %}{% trans "Company" %}{% endif %} |
{{ booker_company }} |
{% endif %}
{% if booker_message %}
| {% if label_message %}{{ label_message }}{% else %}{% trans "Message" %}{% endif %} |
{{ booker_message|linebreaks }} |
{% endif %}
{% if meet_link %}
{% if label_video %}{{ label_video }}{% else %}{% trans "Video call" %}{% endif %}:
{{ meet_link }}
{% endif %}
{% if closing_copy %}
{{ closing_copy|linebreaks }}
{% else %}
{% trans "If the time no longer works for you, just reply to this email and we'll reschedule." %}
{% endif %}
|