Adding Order tag to my confirmation email

Hello

When an order is placed - i have an app for clients to choose their delivery dates when ordering.

It adds a tag onto my orders.

How can i add this tag to my confirmation email to customers.

Thanks

Go to Settings > Notifications, there you can edit the emails that your store sends.

This will help you to get the variables you want: https://help.shopify.com/en/manual/orders/notifications/email-variables

For example, you could do something like this:

{% for tag in tags %}
  {% if tag == "some tag" %}
    

Text to show if this tag is on the order

  {% elsif tag == "another tag" %}
    

Text to show for some other tag

  {% endif %}
{% endfor %}

Hello, I believe this is very close to what I am looking for. Except there is also a tag that shows the type of shipping. What code could I use that would search the tags for a date and then just display the date, not any others?

Did you ever find a good solution? I am looking to do the same exact thing.