# 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**.&#x20;

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FsWs0I009qBvgCf4KDXjc%2Fimage.png?alt=media&#x26;token=8a63686b-2434-4bc9-97c2-2c2cc269c322" alt=""><figcaption></figcaption></figure>

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

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2FK1E0IHc7qQcQ54wlqyGw%2Fimage.png?alt=media&#x26;token=ff8afe92-248f-4194-9be5-278db5f55a4c" alt=""><figcaption></figcaption></figure>

3\. Locate the following line of code.

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

<figure><img src="https://24152052-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FglwgaFVh2VmGBjtIbnDb%2Fuploads%2F9CN6O7prE4cxEfSpN8lj%2Fimage.png?alt=media&#x26;token=82761f0a-4724-46c0-9561-bfa7cb8ef236" alt=""><figcaption></figcaption></figure>

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

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