Follow the instructions below to display option selections in fulfillment request emails.

1. Starting from your Shopify admin dashboard, navigate to the  Settings tab, then click on Notifications

2. Click on the link for the fulfillment request email template.

3. Locate the following line of code.

<p>Variant Title: {{ line.line_item.title }}</p>

4. Copy and paste the following snippet after it.

{% for p in line.line_item.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 %} 
{{ 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 %} 

5. Save your changes.