# New Order

Follow the steps below on how to display upload details in the new order emails.

1\. Make sure that you have notifications enabled. Please see [this article](https://help.shopify.com/en/manual/fulfillment/setup/notifications/new-order-notifications#add-a-notification-for-new-orders) to see how to enable that.

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

<figure><img src="https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2FGbnnCiQhvw03aZYKnmUA%2Fimage.png?alt=media&#x26;token=2cffab28-fa80-442c-88ad-bdedd6f08fcf" alt=""><figcaption></figcaption></figure>

3\. Select **Staff Notifications**.

<figure><img src="https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2FIvFHz7AUdeA6NE3qb3Kn%2Fimage.png?alt=media&#x26;token=4a43f101-97cd-4c01-89bd-8e9aaa00d6de" alt=""><figcaption></figcaption></figure>

4\. Click on the **New Order** email template.

<figure><img src="https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2Fgit-blob-6f959a658eda0a5af890a17a6f70e89b4421019b%2Fimage.png?alt=media" alt=""><figcaption></figcaption></figure>

5\. Locate the following line of code.

```liquid
<span class="order-list__item-variant">• </span>
```

6\. Copy and paste the following snippet after the second **{% endif %}** in the section of code.

```liquid
{% 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 %}<br>

```

<figure><img src="https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2Fgit-blob-6e2f5138d6e0967f5f2e29ca0d57934ac5529818%2Fimage.png?alt=media" alt=""><figcaption></figcaption></figure>

7\. Click the **Save** button at the top of the page.
