# Customize email content

### 🛠️ Steps to edit email template

1. Open the app > click **Notifications**
2. Select **Customer** or **Team member** or **Merchant**&#x20;
3. Click the email template you want to edit

<figure><img src="/files/yaTx7pdnCoIkFnrit0pG" alt=""><figcaption></figcaption></figure>

3. Inside the template editor:
   * Update **Subject**
   * Update **Content** (email body)
4. Click **Save**

***

### 🧩 Insert variables (dynamic data)

Variables let you automatically show **real booking information** in your emails, such as the customer name, service name, date, time, and location.

When the email is sent, Tipo replaces each variable with the **actual data from the booking**.

#### 📌 What is a variable?

A variable is a placeholder wrapped in double curly braces, for example:

* `{{ customer.name }}`
* `{{ variant.name }}`
* `{{ booking.start_at }}`

⇒ Customers and staff will never see the variable code, they only see the final value.

#### ➕ How to insert a variable

* Copy the variable (example: `{{ booking.start_time }}`)
* Paste it into the **Subject** or **Content**

<figure><img src="/files/cJ5WIExy4IMAa0L0ECfT" alt=""><figcaption></figcaption></figure>

***

#### ✉️ Example: Customer confirmation email

**Subject**

```
Your booking for {{ variant.name }} is confirmed
```

**Email content**

```
Hi {{ customer.name }},

Your booking has been confirmed. Here are the details:

Service: {{ variant.name }}
Date: {{ booking.start_date }}
Time: {{ booking.start_time }} – {{ booking.end_time }}
Location: {{ booking.location }}

We look forward to seeing you!
```

📌 **Result the customer sees:**

Hi Anna,\
Your booking for Yoga Class is confirmed\
Date: Dec 17, 2025\
Time: 08:00 – 09:00\
Location: Hanoi Studio

***

**🙋 Still need support?**

If you still need help, please feel free to contact us at <hi@tipo.io>. We’ll be happy to assist you further.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tipo.io/tipo-appointment-booking/mail-notification/customize-email-content.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
