{% extends "email/base.html" %} {% block title %}Appointment Reminder — {{ appointment_date }}{% endblock %} {% block content %}

Appointment Reminder

Hi {{ client_name }}, this is a reminder about your upcoming appointment.

Practitioner

{{ practitioner_name }}{% if practitioner_discipline %} — {{ practitioner_discipline }}{% endif %}

Date & Time

{{ appointment_date }} at {{ appointment_time }}

{% if location %}

Location

{{ location }}

{% endif %} {% if appointment_type %}

Appointment Type

{{ appointment_type | replace('_', ' ') | title }}

{% endif %}
{% if notes %}

Notes from your practitioner:
{{ notes }}


{% endif %}

Please arrive 5 minutes early. If you need to cancel or reschedule, we ask for at least 24 hours' notice so we can offer the slot to another client.

{% if cancel_url %}

Cancel or Reschedule

{% endif %}

Questions? Reply to this email or contact {{ organisation_name }} at {% if organisation_phone %}{{ organisation_phone }}{% else %}your usual contact number{% endif %}.

{% endblock %}