Additional Details attribute in notifications (email)

Hello, I want to be able to have the “additional details” attribute sent in with the order confirmation email as well as the custom fulfillment service email.

You can modify the notification templates and use the liquid object attributes to print the attribute values.

Check this document for more information: Notification variables reference

This is just a very simple example for reference

{% for attribute in attributes %}
    Attribute Key: {{ attribute | first }}
    Attribute Value: {{ attribute | last }}
{% endfor %}
2 Likes