# Rediger Shopify-bekræftelsesmailen, så den inkluderer produktvalg

Som standard viser Shopifys ordrebekræftelsesmail ikke linjevareegenskaber som bookingdato og -tidspunkt. Du kan tilpasse den, så denne տեղեկատվion inkluderes.

## Hvad dette ændrer

Efter denne redigering vil din Shopifys ordrebekræftelsesmail vise bookingdetaljer (dato, tidspunkt, varighed og eventuelle brugerdefinerede felter) sammen med produktoplysningerne.

## Trin

1. Gå til **Shopify > Indstillinger > Notifikationer**
2. Klik på **Ordrebekræftelse**
3. I mail-skabelonen skal du søge efter:

```
list__item-title
```

4. Placer følgende snippet direkte under den linje:

```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. Klik på **Gem**

## Resultat

Efter redigeringen vil ordrebekræftelsesmailen vise bookingegenskaber som:

* **Dato**: 15. marts 2026
* **Tid**: 10:00
* **Varighed**: 60 minutter
* Eventuelle brugerdefinerede felter, der blev indsamlet under bookingen

{% hint style="info" %}
Dette påvirker kun **Shopifys** ordrebekræftelsesmail. Sesamis egne bekræftelses-mails inkluderer allerede som standard bookingdetaljer.
{% endhint %}

## Relateret

* [Notifikationsmails](/da/notifikationer/notification-emails.md) — Sesamis indbyggede mailnotifikationer
* [Tilpasning af notifikations-e-mails](/da/notifikationer/customizing-notification-emails.md) — tilpas Sesami-mails


---

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