Sending An Order Confirmation Email Containing Relevant Order Info

Hello,

I’ve been trying to create a Shopify flow that will send an email to myself if the customer who places an email has “xyz” in their email address.

I’ve tried adding this info through the flow’s template variables, but the email that comes through does not include the information.

I’m trying to display:

Can someone guide me on how to create this within flows?

Best,

John

This should be possible in Flow. What information did not come through? It’s possible that the order didn’t have a customer. It’s also possible for the the line items you did not set up the loop at all or correcting. For that, you need to do something like:

{% for li in order.lineItems %}

{{ li.title }}

{% endfor %}