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

# Redigera Shopifys bekräftelsemejl för att inkludera produktalternativ

Som standard visar inte Shopifys e-postmeddelande för orderbekräftelse radartikelns egenskaper som bokningsdatum och tid. Du kan anpassa det så att denna information inkluderas.

## Vad detta ändrar

Efter denna ändring kommer ditt e-postmeddelande för orderbekräftelse i Shopify att visa bokningsdetaljer (datum, tid, varaktighet och eventuella anpassade fält) tillsammans med produktinformationen.

## Steg

1. Gå till **Shopify > Inställningar > Aviseringar**
2. Klicka på **Orderbekräftelse**
3. I e-postmallen, sök efter:

```
list__item-title
```

4. Placera följande kodsnutt direkt under den raden:

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

5. Klicka på **Spara**

## Resultat

Efter ändringen kommer e-postmeddelandet för orderbekräftelse att visa bokningsegenskaper som:

* **Datum**: 15 mars 2026
* **Tid**: 10:00
* **Varaktighet**: 60 minuter
* Eventuella anpassade fält som samlades in under bokningen

{% hint style="info" %}
Detta påverkar endast **Shopify** s e-postmeddelande för orderbekräftelse. Sesamis egna bekräftelsemejl innehåller redan bokningsdetaljer som standard.
{% endhint %}

## Relaterat

* [Aviseringsmejl](/se/aviseringar/notification-emails.md) — Sesamis inbyggda e-postaviseringar
* [Anpassa notifieringsmejl](/se/aviseringar/customizing-notification-emails.md) — anpassa Sesami-mejl


---

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