You can display the answers from your custom fields in your Shopify email notifications. Here’s how to do it:
From your Shopify admin, go to Settings > Notifications.
Click the name of the notification you want to update.
Click Edit code.
Find the line that contains
{% for line in subtotal_line_items %}
.Look for the code block that references the product title right after that line.
Paste the code below immediately after the product title block:
{% unless line.properties == empty %}
{%- for prop in line.properties -%}
{% unless prop.first == "_Form Fields" %}
{{ prop.first }}: {{ prop.last }}<br/>
{% endunless %}
{%- endfor -%}
{% endunless %}Click Save.
That’s it. Now your customers’ field answers will show up in the email notifications you send out.
If you want to see exactly how it looks, you can watch the short video below: