# 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="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2F66CXnHSJkH9XciHjVfuN%2Fimage.png?alt=media&#x26;token=c7135c79-c8c8-4b72-942e-3a437554da39" alt=""><figcaption></figcaption></figure>
{% endstep %}

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

<figure><img src="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2FsC5IQyFPxFd1FLJYj3tx%2Fimage.png?alt=media&#x26;token=f81e69cc-ed81-4976-b942-805a6e11d768" 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="https://3294420404-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FyKpeSoGW2SR7i4BJqoeq%2Fuploads%2FWu2X80C7Ka7PEooVYFnl%2Fimage.png?alt=media&#x26;token=93b37edd-50d7-4620-9eba-d1ee7ea66b76" 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>**.
