> For the complete documentation index, see [llms.txt](https://shoppad.gitbook.io/uploadery/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://shoppad.gitbook.io/uploadery/display-uploadery-on-shopify-notifications/shopify-emails-and-packing-slip-templates/order-confirmation.md).

# Order Confirmation

Want your customers' file uploads to show up in the Order Confirmation template? This requires ensuring line item properties are compatible with your template. Contact support and we'll set it up for you.

### Manual Process (not recommended)

{% hint style="info" %}
We do not recommend trying to add the code for line item properties to your email templates on your own, as each template varies and the steps below may not apply to your templates. Please contact support and we'd be glad to take care of it for you.
{% endhint %}

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

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

<figure><img src="/files/tau5sxpueJcWQ9M5Ueek" alt=""><figcaption></figcaption></figure>

2\. Select Customer Notifications.

<figure><img src="/files/xFTXQsZ8V1z9bGOIrndA" alt=""><figcaption></figcaption></figure>

2\. Click on the **Order Confirmation** email template.

<figure><img src="/files/lDGmx978f72Mb26QCe0j" alt=""><figcaption></figcaption></figure>

3\. Locate the following line of code. There will be several results; we'll add our snippet after the **last** instance.

```liquid
{% if line.variant.title != 'Default Title' and is_parent == false %}
```

OR

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

<figure><img src="/files/obwKTb9fWwFLvMfOwbPF" alt=""><figcaption></figcaption></figure>

4\. Copy and paste the following snippet where "ADD CODE SNIPPET HERE" is shown above, after the ***{% endif %}*** line 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: #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 %}<br>
```

<figure><img src="/files/YsVEYGEvBmNApgUH8TT4" alt=""><figcaption></figcaption></figure>

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