# Fulfillment Request

Follow the instructions below to display option selections in the fulfillment request emails.

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

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-3a46ddaf28cd2c7e482e9e7952d7b71a22bc03e5%2Fdocsassets555e25e4e4b027e1978e1c9aimages67bfd9edc671313b703d24fbfile-nkorhxti81.png?alt=media)

2\. Click on the link for the **Fulfillment request** notification template, then select edit code.

![](https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2Fgit-blob-3fa9d20339757e5179debdcf7a9d9b0a2e3db606%2Fdocsassets555e25e4e4b027e1978e1c9aimages67c1259966c50e0e7db92f4ffile-3fo5hg01rt.png?alt=media)

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

```html
<p>Variant Title: {{ line.line_item.title }}</p>
```

4\. Copy and paste the following snippet after it.

```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>
      {{ 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>
```

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