I have a Viewfield on the Order type that displays content from a webform submission that is associated with the order via the Commerce Webform Order module. This Viewfield successfully displays that view’s content on the order details page for both admin and shopper.
I want that webform data to be displayed on the order receipt email. I have found that this code will render the entirety of the order (the Viewfield contents, along with the admin comments, the products ordered, etc) in the email:
{{ order_entity|commerce_entity_render }}
That is far too much data, and some of it is a bit "sensitive" on nonsensical to the customer (such as the admin order comments).
How can I display ONLY the contents of the Viewfield (which is called " field_registration_details") in the order receipt email? I tried setting up a custom display setting (called "email") for the order type, and I only have the Viewfield visible in that display, but that doesn’t seem to work (although I may not be calling that display correctly in the template code). I also tried adding the Viewfield directly to the order receipt email template, but that displays nothing at all.
One other possibility I considered was trying to use this code from commerce-order–admin.html.twig:
{{ additional_order_fields }}
However, I am not sure exactly how I could leverage that in the email template.