# Modifier l’e-mail de confirmation Shopify pour inclure les options de produit

Par défaut, l’e-mail de confirmation de commande de Shopify n’affiche pas les propriétés des articles de ligne, comme la date et l’heure de réservation. Vous pouvez le personnaliser pour inclure ces informations.

## Ce que cela change

Après cette modification, votre e-mail de confirmation de commande Shopify affichera les détails de réservation (date, heure, durée et tous les champs personnalisés) à côté des informations du produit.

## Étapes

1. Allez dans **Shopify > Paramètres > Notifications**
2. Cliquez sur **Confirmation de commande**
3. Dans le modèle d’e-mail, recherchez :

```
list__item-title
```

4. Placez l’extrait suivant directement sous cette ligne :

```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>Lien</small></a>
      {% else %}
        <small>{{ p.last }}</small>
      {% endif %}
      <br>
    {% endunless %}
  {% endfor %}
</p>
{% endif %}
```

5. Cliquez sur **Enregistrer**

## Résultat

Après la modification, l’e-mail de confirmation de commande affichera les propriétés de réservation comme :

* **Date**: 15 mars 2026
* **Heure**: 10:00
* **Durée**: 60 minutes
* Tous les champs personnalisés collectés pendant la réservation

{% hint style="info" %}
Cela n’affecte que l’e-mail de confirmation de commande **Shopify** . Les propres e-mails de confirmation de Sesami incluent déjà les détails de réservation par défaut.
{% endhint %}

## Associé

* [E-mails de notification](/fr/notifications/notification-emails.md) — notifications e-mail intégrées de Sesami
* [Personnaliser les e-mails de notification](/fr/notifications/customizing-notification-emails.md) — personnaliser les e-mails Sesami


---

# 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/fr/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.
