Display file upload details in fulfillment request emails

Follow the instructions below to display file upload details 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 %}
  {% if p.first contains '_io_' %}
    {% continue %}
  {% endif %}
  {% if p.last %}
    {% assign name = p.first %}
    {% assign value = p.last %}
  {% else %}
    {% assign name = p.name %}
    {% assign value = p.value %}
  {% endif %}
  {% unless value == blank %}
    <p>
      {{ name }}:
      {% if p.last contains '//uploadery.s3' %}
        <a style='font-size: 14px;' href="{{ value }}">Link to your file</a>
      {% else %}
        {{ value }}
      {% endif %}
    </p>
  {% endunless %}
{% endfor %}

5. Save your changes.