# Display options in Confirmation Email

This is the email your customer receives right after placing an order. By default, Shopify’s order confirmation email doesn’t include custom option details — but you can change that!

> <mark style="color:orange;">🔔</mark> <mark style="color:orange;"></mark><mark style="color:orange;">**Note:**</mark> <mark style="color:orange;"></mark><mark style="color:orange;">If you've already customized your email templates,</mark> <mark style="color:orange;"></mark><mark style="color:orange;">**do not**</mark> <mark style="color:orange;"></mark><mark style="color:orange;">copy and paste the full code below. Instead, review and merge it carefully.</mark>

***

#### 📌 Follow These Steps:

{% stepper %}
{% step %}
From your **Shopify admin**, click on **Settings,** Select **Notifications**

<figure><img src="/files/MoWoj2nbomCc8ofRBlX6" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
Under **Customer Notifications**, click **Order confirmation**

<figure><img src="/files/ZtbjqtQcCXj41Nre5Zjb" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
**Download the Order Confirmation template** *(*[*click this button to download*](https://github.com/globo-software/display-cart-line-item-in-notification/blob/main/gpo-order-confirmation.liquid)*)*
{% endstep %}

{% step %}
**Copy the code**&#x20;

```
<div class="order-list__item-properties">
	{% assign property_size = line.properties | size %} 
	{% if property_size > 0 %} 
	{% for p in line.properties %} 
	<div class="order-list__item-property">
		{% assign first_character_in_key = p.first | truncate: 1, '' %}
		{% unless p.last == blank or first_character_in_key == '_' %} 
		<span>{{ p.first }}: </span>
		{%- if p.last contains '/uploads/' -%} 
		<a href="{{ p.last }}">{{ p.last | split: '/' | last }}</a> 
		{%- else -%} 
		{{ p.last }} 
		{%- endif -%} 
		{% endunless %} 
	</div> 
	{% endfor %}
	{% endif %} 
</div>
```

**and Paste to Email body (HTML)** box

<figure><img src="/files/zbC24ugst4tVBvUyJ5GZ" alt=""><figcaption></figcaption></figure>
{% endstep %}

{% step %}
**Save**
{% endstep %}
{% endstepper %}

📧 **Need Help?**\
If you run into any issues while setting up your option set, feel free to reach out to us at **Chat** or email **<contact@globosoftware.net>**.


---

# 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://docs.globo.io/options/integration/display-options-in-confirmation-email.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.
