> For the complete documentation index, see [llms.txt](https://help.sesami.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.sesami.co/de/apps-integrations/shopify/edit-your-shopify-confirmation-email-to-include-product-options.md).

# Shopify-Bestätigungs-E-Mail bearbeiten, um Produktoptionen einzuschließen

Standardmäßig zeigt die Bestellbestätigungs-E-Mail von Shopify keine Eigenschaften der Bestellposition wie Buchungsdatum und -uhrzeit an. Du kannst sie anpassen, um diese Informationen einzuschließen.

## Was diese Änderung bewirkt

Nach dieser Änderung zeigt deine Shopify-Bestellbestätigungs-E-Mail Buchungsdetails (Datum, Uhrzeit, Dauer und alle benutzerdefinierten Felder) zusammen mit den Produktinformationen an.

## Schritte

1. Gehen Sie zu **Shopify > Einstellungen > Benachrichtigungen**
2. Klicken Sie auf **Bestellbestätigung**
3. Suche in der E-Mail-Vorlage nach:

```
list__item-title
```

4. Füge das folgende Snippet direkt unter diese Zeile ein:

```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. Klicken Sie auf **Speichern**

## Ergebnis

Nach der Änderung zeigt die Bestellbestätigungs-E-Mail Buchungseigenschaften wie:

* **Datum**: 15. März 2026
* **Uhrzeit**: 10:00 Uhr
* **Dauer**: 60 Minuten
* Alle während der Buchung erfassten benutzerdefinierten Felder

{% hint style="info" %}
Dies betrifft nur die **Shopify** Bestellbestätigungs-E-Mail. Sesamis eigene Bestätigungs-E-Mails enthalten Buchungsdetails standardmäßig bereits.
{% endhint %}

## Verwandt

* [Benachrichtigungs-E-Mails](/de/benachrichtigungen/notification-emails.md) — Sesamis integrierte E-Mail-Benachrichtigungen
* [Benachrichtigungs-E-Mails anpassen](/de/benachrichtigungen/customizing-notification-emails.md) — Sesami-E-Mails anpassen


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://help.sesami.co/de/apps-integrations/shopify/edit-your-shopify-confirmation-email-to-include-product-options.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
