Display file upload details in new order emails

Please follow the instructions below to display upload details in new order emails.

1. Make sure that you have notifications enabled. Please see this article to see how to enable that.

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

3. Click on the link for the new order email template towards the bottom of the page.

4. Locate the following line of code.

 {% if line.variant.title != 'Default Title' %}

5. Copy and paste the following snippet after the section of code.

{% for p in line.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 style='margin-top: 0px; margin-bottom: 0px; font-size: 14px; color: #6d7175;'>
      {{ 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 %}

6. Click the Save button at the top of the page.