# Shipping Confirmation

Follow the steps below to display option selections in the shipping confirmation emails.

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

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FNKR0CYspZYBRMgdqZogl%2Fimage.png?alt=media&#x26;token=22663e84-9aa0-4e5e-997a-59ad6d8f41c4" alt=""><figcaption></figcaption></figure>

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

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FjRgbYcI46HruZSNWgig0%2Fimage.png?alt=media&#x26;token=c36d892f-f8bc-45c3-90d0-b4df97104dbb" alt=""><figcaption></figcaption></figure>

3\. Locate the following line of code.

```html
{% if line.line_item.variant.title != 'Default Title' %}<br>
```

4\. Copy and paste the following snippet after the section of code.

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

```

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FEabPJy1ke69bz9jaQSQH%2Fimage.png?alt=media&#x26;token=f9e93b8b-06a8-4535-a765-2aacae886c46" alt=""><figcaption></figcaption></figure>

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

<br>
