> 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/pl/apps-integrations/shopify/edit-your-shopify-confirmation-email-to-include-product-options.md).

# Edytuj e-mail potwierdzający Shopify, aby uwzględnić opcje produktu

Domyślnie e-mail z potwierdzeniem zamówienia w Shopify nie pokazuje właściwości pozycji, takich jak data i godzina rezerwacji. Możesz go dostosować, aby uwzględniał te informacje.

## Co to zmienia

Po tej zmianie e-mail z potwierdzeniem zamówienia Shopify będzie wyświetlać szczegóły rezerwacji (datę, godzinę, czas trwania i wszelkie niestandardowe pola) wraz z informacjami o produkcie.

## Kroki

1. Przejdź do **Shopify > Ustawienia > Powiadomienia**
2. Kliknij **Potwierdzenie zamówienia**
3. W szablonie e-maila wyszukaj:

```
list__item-title
```

4. Umieść poniższy fragment bezpośrednio pod tą linią:

```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. Kliknij **Zapisz**

## Wynik

Po zmianie e-mail z potwierdzeniem zamówienia będzie wyświetlać właściwości rezerwacji, takie jak:

* **Data**: 15 marca 2026
* **Godzina**: 10:00
* **Czas trwania**: 60 minut
* Wszelkie niestandardowe pola zebrane podczas rezerwacji

{% hint style="info" %}
To dotyczy tylko **Shopify** e-maila z potwierdzeniem zamówienia. Własne e-maile potwierdzające Sesami już domyślnie zawierają szczegóły rezerwacji.
{% endhint %}

## Powiązane

* [E-maile powiadomień](/pl/powiadomienia/notification-emails.md) — wbudowane powiadomienia e-mail Sesami
* [Dostosowywanie e-maili z powiadomieniami](/pl/powiadomienia/customizing-notification-emails.md) — dostosuj e-maile Sesami


---

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