> For the complete documentation index, see [llms.txt](https://easify.gitbook.io/easify-box-bundle-builder-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://easify.gitbook.io/easify-box-bundle-builder-docs/user-guide/more-features/show-custom-options-on-new-order-notification-emails-to-staff.md).

# Show Custom Options on New Order Notification Emails (to Staff)

Log in to your Shopify admin panel and follow these steps:

{% stepper %}
{% step %}

### Access New Order Email Template

* Navigate to ***Settings > Notifications > Staff Notifications***
* Locate and select ***New order***
* Click on the ***Edit code*** button to access the email template’s HTML code

![](/files/820b38aafbc57a5234b2eddb5f256ad91fe7a72c)

![](/files/4f1f669c3ee11a145c67b7903aa84ba3ef4dc881)

![](/files/5e0ed51742846e90f1dc45b4ee998c16a21ae3d9)

![](/files/3c3283572fd67d10bbb68d4b007db2905b2ceb67)
{% endstep %}

{% step %}

### Add custom code to email template

#### 2.1. Add code after `line.unit_price_measurement`

Place your cursor in the Email body (HTML), use the shortcut *Ctrl + F* (*Command + F* on Mac) to open the search function.

Search for **“line.unit\_price\_measurement”** in the existing code.

After locating **“\</table>”**, paste the following code snippet:

![](/files/98148b6f9832a3f3f10247d99454b8d85c5959f6)

```html
<table>
   <tr>
     <td class="order-list__image-cell">
       <div class="order-list__no-image-cell small" style="border: none; width: 60px; height: 60px;">
                </div>
     </td>
     <td class="order-list__product-description-cell">
       {%- for attribute in attributes -%}
         {%- assign attribute_key = attribute.first -%}
         {%- assign attribute_value = attribute.last -%}
         {%- if attribute_key contains 'sbb_' -%}
           {%- assign box_id = attribute_key | remove: 'sbb_' -%}
           {%- assign formatted_value = attribute_value | strip -%}
           <div>
             <pre style="margin:0; font-family: inherit;">{{ formatted_value }}</pre>
           </div>
         {%- endif -%}
       {%- endfor -%}
     </td>
   </tr>
 </table>
```

![](/files/c0d751a010a5bbabdf87ead74af8e8b14c525b7c)

#### 2.2. Add code after `row subtotal-lines`

Place your cursor in the Email body (HTML), use the shortcut *Ctrl + F* (*Command + F* on Mac) to open the search function.

Search for **“row subtotal-lines”** in the existing code.

You will see the **\</table>** tag

![](/files/6b5ab4324d352e5c071f14419a99f05a0b6d47f4)

Paste the following code immediately after the `</table>` tag:

```html
{%- assign line_items_json = line_items | json -%}


{%- if line_items_json contains '_sbb:itemQty' -%}
  <table>
    <tr>
      <td class="order-list__image-cell">
        <div class="order-list__no-image-cell small" style="border: none; width: 60px; height: 60px;">
                 </div>
      </td>


      <td class="order-list__product-description-cell">
        {%- for attribute in attributes -%}
          {%- assign attribute_key = attribute.first -%}
          {%- assign attribute_value = attribute.last -%}


          {%- if attribute_key contains 'sbb_' -%}
            {%- assign box_id = attribute_key | remove: 'sbb_' -%}
            {%- assign formatted_value = attribute_value | strip -%}


            <div>
              <strong>{{ box_id }}:</strong>
              <pre style="margin: 0 0 0 20px; font-family: inherit;">{{ formatted_value }}</pre>
            </div>
          {%- endif -%}
        {%- endfor -%}
      </td>
    </tr>
  </table>
{%- endif -%}
```

![](/files/7ca2d2cb1660478928960ec71de8a7cfde1e7440)
{% endstep %}

{% step %}

### Save changes

Click on the **“Save”** button to apply the changes to the template.

Wait for approximately 30 seconds for the changes to take effect.

![](/files/e24b848c07761bbd7a4c351e96baa846c5ace4e0)
{% endstep %}
{% endstepper %}

## Need Assistance?

If you run into any challenges while adding Easify’s custom options to your New Order Notification Emails, feel free to reach out to us for assistance through our convenient **in-app live chat**. We’re here to help!


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://easify.gitbook.io/easify-box-bundle-builder-docs/user-guide/more-features/show-custom-options-on-new-order-notification-emails-to-staff.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
