> For the complete documentation index, see [llms.txt](https://ymq-app.gitbook.io/ymq-product-options-app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ymq-app.gitbook.io/ymq-product-options-app/email-notifications-and-packing-slips-and-invoices/new-order-email-sent-to-staff.md).

# New Order (email sent to staff)

To get our apps **virtual options** to show up correctly in the **New Order** email notifications  (sent to staff), you will need to add some code to your template.

* Go to your **Shopify dashboard**
* Select **Settings**
* Select **Notifications**
* Select **Orders >**  **New Order** (near the bottom of the page)
* Click **Edit Code**

<figure><img src="https://2625127081-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FadDQ5oZA6CM3C6sDtLH7%2Fuploads%2FBSGH538DrD1tuKDRc09S%2Fimage.png?alt=media&amp;token=0893ca52-674a-42c1-bdd8-e5216909d11a" alt=""><figcaption></figcaption></figure>

In the New Order template search for the code below.

```liquid
if line.selling_plan_allocation
```

Above the **{% if line.selling\_plan\_allocation %}** code place the following code.

```liquid
{% for p in line.properties %}
    {% assign property_first_char = p.first | slice: 0 %}
    {% unless p.last == blank or property_first_char  == '_' %}
        <div class="ymq-property">{{ p.first }}:
        {% if p.last contains '/uploads/' %}
            <div><img src="{{ p.last }}" style="max-width: 50px; height: auto;"></div>
        {% else %}
            {{ p.last }}
        {% endif %}
        </div>
    {% endunless %}
{% endfor %}
```

The result will look like the screenshot below.

<figure><img src="https://2625127081-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FadDQ5oZA6CM3C6sDtLH7%2Fuploads%2FoaZevFL5eywBbPbPdVyR%2Fimage.png?alt=media&amp;token=953f4c8c-13e7-49b1-a66f-a600e2058114" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
You can revert back to the default notification by scrolling to the bottom of the page and clicking **Revert to Default**.![](https://2625127081-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FadDQ5oZA6CM3C6sDtLH7%2Fuploads%2FzJaf8D5NEWiOKZNZhTJ2%2Fimage.png?alt=media\&token=4c057315-e8de-4947-8ca0-eba9abaf64bf)
{% endhint %}
