π·How can I add custom fields to new order notification emails sent to STAFF?




PreviousHow can I show custom fields in the order confirmation email sent to CUSTOMERS?NextHow to add custom fields to fulfillment email notification?
Last updated




Last updated
{% for property in line.properties %}
{% assign property_first_char = property.first | slice: 0 %}
{% if property.last != blank and property_first_char != '_' %}
<span class="line-item-description-line">
{{ property.first }}: {{ property.last }}
</span><br/>
{% endif %}
{% endfor %}