# Edit Shopify Confirmation Email to Include Product Options

By default, Shopify's order confirmation email doesn't show line item properties like the booking date and time. You can customize it to include this information.

## What This Changes

After this edit, your Shopify order confirmation email will display booking details (date, time, duration, and any custom fields) alongside the product information.

## Steps

1. Go to **Shopify > Settings > Notifications**
2. Click **Order Confirmation**
3. In the email template, search for:

```
list__item-title
```

4. Place the following snippet directly below that line:

```liquid
{% assign property_size = line.properties | size %}
{% if property_size > 0 %}
<p>
  {% for p in line.properties %}
    {% if p.first contains "_options" %}
      {% continue %}
    {% endif %}
    {% unless p.last == blank %}
      <small>{{ p.first }}:</small>
      {% if p.last contains '/uploads/' %}
        <a target="_blank" href="{{ p.last }}"><small>Link</small></a>
      {% else %}
        <small>{{ p.last }}</small>
      {% endif %}
      <br>
    {% endunless %}
  {% endfor %}
</p>
{% endif %}
```

5. Click **Save**

## Result

After the edit, the order confirmation email will show booking properties like:

* **Date**: March 15, 2026
* **Time**: 10:00 AM
* **Duration**: 60 minutes
* Any custom fields collected during booking

{% hint style="info" %}
This only affects the **Shopify** order confirmation email. Sesami's own confirmation emails already include booking details by default.
{% endhint %}

## Related

* [Notification Emails](/notifications/notification-emails.md) — Sesami's built-in email notifications
* [Customizing Notification Emails](/notifications/customizing-notification-emails.md) — customize Sesami emails


---

# 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://help.sesami.co/apps-integrations/shopify/edit-your-shopify-confirmation-email-to-include-product-options.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.
