# Shipping Confirmation

Follow the steps below to display upload details in the shipping confirmation emails.

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

<figure><img src="https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2F2mmRH5hqgbKKuWHgiMeY%2Fimage.png?alt=media&#x26;token=00e856fd-ae21-4e57-bd2a-fffb703345e6" alt=""><figcaption></figcaption></figure>

2\. Select Customer Notifications then click on the link for the **Shipping Confirmation** email.

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

3\. Locate the following line of code (remove any unnecessary spaces at the end).

```html
<span class="order-list__item-variant">Part of: {{ group.display_title }}</span
><br />
```

<figure><img src="https://1830227525-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FttS2ys9nVT4SeVSaGa3f%2Fuploads%2FqqUBkz28mTfTz0ojpfpr%2Fshipping-confirmation-code-search.png?alt=media&#x26;token=041ee1ce-3ae3-46a5-b8c0-2693373cede6" alt=""><figcaption></figcaption></figure>

4\. Copy and paste the following snippet after the section of code that ends with **{% endif %}**.

```liquid
{% 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 style='margin-top: 0px; margin-bottom: 0px; font-size: 14px; color: #999;'>
      {{ 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 %}
```

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

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