How to show selected delivery details in the order confirmation email?

To show the selected order delivery date in the customer order email, please follow the below mentioned steps.

Email template file path: Login into the Admin panel.

Click on this link “Order Confirmation Email Template”, click on it.

Insert the below code on the preferred position to show the order Additional Detail in the email template and save it.

And to send the Order Delivery Date detail in another email, insert the same code mentioned below

{% for attribute in attributes %}
{{ attribute | first | replace: '-', ' ' | replace: '_', ' ' | capitalize }} : {{ attribute | last | capitalize }}
{% endfor %}

For a quick view of all the above steps, check the below image #

For the new Order Printer app, use the below code #

{% for attribute in order.attributes %}
{{ attribute | first | replace: '-', ' ' | replace: '_', ' ' | capitalize }} : {{ attribute | last | capitalize }}
{% endfor %}
Scroll to Top