Display the estimated delivery date in the order confirmation email
Go to the app settings.
Navigate to Display ETA in order email and click on Configure.

Go to the email template file.

Copy and paste the following code into the template:
{% for p in line.properties %}
{% assign property = p.first | rstrip %}
{%- if property == 'Estimated Delivery' -%}{{ p.first}} : {{ p.last }}{% endif %}
{% endfor %}
This code will extract and display the estimated delivery date from the line properties and show it in the order confirmation email.
If have any question need further help feel free reach out to us!
Navigate to Display ETA in order email and click on Configure.

Go to the email template file.

Copy and paste the following code into the template:
{% for p in line.properties %}
{% assign property = p.first | rstrip %}
{%- if property == 'Estimated Delivery' -%}{{ p.first}} : {{ p.last }}{% endif %}
{% endfor %}
This code will extract and display the estimated delivery date from the line properties and show it in the order confirmation email.
If have any question need further help feel free reach out to us!
Updated on: 22/11/2024
Thank you!