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

# Editar o e-mail de confirmação do Shopify para incluir opções de produto

Por predefinição, o e-mail de confirmação de encomenda da Shopify não mostra propriedades do item de linha, como a data e a hora da reserva. Pode personalizá-lo para incluir هذه informação.

## O que isto altera

Após esta edição, o seu e-mail de confirmação de encomenda da Shopify apresentará os detalhes da reserva (data, hora, duração e quaisquer campos personalizados) juntamente com a informação do produto.

## Passos

1. Aceda a **Shopify > Definições > Notificações**
2. Clique em **Confirmação de encomenda**
3. No modelo de e-mail, procure por:

```
list__item-title
```

4. Coloque o seguinte trecho diretamente abaixo dessa linha:

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

5. Clique em **Guardar**

## Resultado

Após a edição, o e-mail de confirmação da encomenda mostrará propriedades da reserva como:

* **Data**: 15 de março de 2026
* **Hora**: 10:00
* **Duração**: 60 minutos
* Quaisquer campos personalizados recolhidos durante a reserva

{% hint style="info" %}
Isto afeta apenas o e-mail de confirmação de encomenda da **Shopify** . Os e-mails de confirmação próprios da Sesami já incluem os detalhes da reserva por predefinição.
{% endhint %}

## Relacionado

* [E-mails de notificação](/pt/notificacoes/notification-emails.md) — notificações de e-mail incorporadas da Sesami
* [Personalizando Emails de Notificação](/pt/notificacoes/customizing-notification-emails.md) — personalizar e-mails da 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/pt/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.
