Articles on: Delivery Date by Omega

How to add delivery date to Order Confirmation Email?

Code to add delivery date to Order Confirmation Email

Step 1: Go to Order Confirmation in Notification Settings and search the word "billing_address"
Some special email template that doesn't include "billingaddress" , please contact us for support._

Step 2: Paste the code below the close tag </table> (see attached picture)

{% comment %}
Start Omega
{% endcomment %}
<table>
<tr>
<td class=""customer-info__item"">
<h4>Additional details</h4>
<p>
{% for attribute in attributes %}
{% assign attributeName = attribute | first %}
{% if attributeName != 'delivery_date_origin' %}
{{ attribute | first }}: {{ attribute | last }}<br>
{% endif %}
{% endfor %}
</p>
</td>
</tr>
</table>
{% comment %}
End Omega
{% endcomment %}

Updated on: 27/05/2022

Was this article helpful?

Share your feedback

Cancel

Thank you!