Articles on: General

Show preorder offer details on order confirmation email

STOQ supports showing preorder offer details on order confirmation email. This helps merchants provide better information to customers whenever a order is placed enhancing their order journey with the store.

Prerequisites



Enable Preorder offer Information options at every step of purchase flow

How to show preorder offer details on order confirmation email



While logged into your Shopify Admin, go to "Settings".


Go to "Notifications" section and click on "Customer notifications".


Click on "Order confirmation".


Click on "Edit code"


Find the code it shows the for loop for subtotal_line_items: {% for line in subtotal_line_items %} and add the following code to your email.

{% if line.properties %}
	{% for property in line.properties %}
            <span class="order-list__item-variant">
            	{{ property.first }}: {{ property.last }}
            </span><br/>
         {% endfor %}
{% endif %}


After adding the code to display, click save.


Whenever the order placed is a preorder, the default Shopify order confirmation email will have all of the offer details you've enabled to show inside the email.



If you need any help in setting this up, feel free to reach out to our 24/7 live support.

Useful Resources



How to send confirmation email for preorders
Show preorder offer information on package slips

Updated on: 19/05/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!