Follow the methods below to display option selections in order confirmation emails.
Automatically add the code snippet to the template:
1. Starting from your Shopify admin dashboard, navigate to the Settings tab, then click on Notifications.
2. Click on the link for the Order Confirmation email.
3. Copy all the default order confirmation template code
5. Paste your order confirmation template
6. Select “order confirmation” from the select menu
7. Now click on the “Generate template” button
8. You will see a success message.
9. Now copy all the new codes and paste them on your Shopify order confirmation template box ( Make sure to delete old template codes )
10. Click on save.
11. Do the manual edit if you face any errors.
Manually add the code snippet to the template
1. Starting from your Shopify admin dashboard, navigate to the Settings tab, then click on Notifications.
2. Click on the link for the Order Confirmation email.

3. Scroll about half way down the page until you see this section of code. Look for line.variant.title code.

4. Copy and paste the following code snippet in the specified location.
{% assign propertySize = line.properties | size %} {% if propertySize > 0 %} {% for p in line.properties %} {% assign hidden_property = p.first | first | replace: '_', true %} {% unless p.last == blank %} {% if hidden_property == 'true' %} <span style="display:none;" class="product-personalizer-line-item-prop" data-prop-name="{{ p.first }}">{{ p.first }}: {{ p.last }}</span> {% else %} {% if p.last contains '/assets/' %} {% assign foo = p.last %} {% assign my_variable = true %} {% endif %} {{ p.first }}: {% if p.last contains '/uploads/' or p.last contains '/assets/' or p.last contains '/products/' %} {% assign format = 'jpg' %} {% if p.last contains 'png' %} {% assign format = 'png' %} {% endif %} <a target="_blank" href="{{ p.last }}?format={{ format }}" src="{{ p.last }}?format={{ format }}" class="jslghtbx-thmb" data-jslghtbx download>{% if shop.metafields.customify['clickable_text'] %} {{ shop.metafields.customify['clickable_text'] }}{% else %}Click to view image{% endif %}</a> {% else %} {{ p.last | newline_to_br }} {% endif %} <br> {% endif %} {% endunless %} {% endfor %} {% endif %}
5. Save your changes.