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

# Rediger Shopify-bekreftelses-e-posten for å inkludere produktalternativer

Som standard viser ikke Shopifys ordrebekreftelses-e-post linjeelementegenskaper som bookingdato og -tid. Du kan tilpasse den slik at denne informasjonen inkluderes.

## Hva dette endrer

Etter denne endringen vil Shopifys ordrebekreftelses-e-post vise bookingdetaljer (dato, tid, varighet og eventuelle egendefinerte felt) sammen med produktinformasjonen.

## Trinn

1. Gå til **Shopify > Innstillinger > Varsler**
2. Klikk **Ordrebekreftelse**
3. I e-postmalen, søk etter:

```
list__item-title
```

4. Plasser følgende utdrag direkte under den linjen:

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

5. Klikk **Lagre**

## Resultat

Etter endringen vil ordrebekreftelses-e-posten vise bookingegenskaper som:

* **Dato**: 15. mars 2026
* **Tid**: 10:00
* **Varighet**: 60 minutter
* Eventuelle egendefinerte felt som ble samlet inn under bookingen

{% hint style="info" %}
Dette påvirker bare **Shopify** ordrebekreftelses-e-posten. Sesamis egne bekreftelses-e-poster inkluderer allerede bookingdetaljer som standard.
{% endhint %}

## Relatert

* [Varslings-e-poster](/no/varsler/notification-emails.md) — Sesamis innebygde e-postvarsler
* [Tilpasse varsels-e-poster](/no/varsler/customizing-notification-emails.md) — tilpass Sesami-e-poster


---

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