# Order notifications

Custom fields are also available for orders and their associated information. An order object in Shopify contains references to the ordering customer as well as the ordered products and variants. \
\
Examples of Liquid drops to use in e.g. a Shopify notification template:

```
{{ customer.metafields.accentuate.nick_name }}  

{% for line in line_items %}
   {{ line.product.metafields.accentuate.description }}
   {{ line.variant.metafields.accentuate.washing_instructions }}
{% endfor %}
```

Please see this Shopify article on which variables can be referenced from within an order notification:

{% embed url="<https://help.shopify.com/en/manual/orders/notifications/email-variables#line-item>" %}

{% hint style="info" %}
*This applies to Shopify's **internal** notification template. If you want to use the **Order Printer app**, Metafields will not be available, so another approach is needed - please see* [*this article*](https://community.shopify.com/c/Shopify-Design/Product-pages-Get-customization-information-for-products/m-p/616525) *from Shopify*
{% endhint %}


---

# Agent Instructions: 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://help.accentuate.io/liquid-guides/order-notifications.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.
