Need help getting New Cart Attribute to show in New Order Notification

I added some custom Cart attribute Fields to the Cart page for one of my online stores. I need to get the responses to these options on my New Order notifications. If anyone has any guidance it would be greatly appreciated. Here is the code in the main-cart-items.liquid File. Using Dawn Theme. As a bonus feel free to let me know if I did anything wrong with these fields, everything visually looks accurate.

Name of Property Being Invoiced -
Name of Regional/Corporate Manager for Approval -
E-mail of Regional/Corporate Manager -

Hi @JRice1 ,

Your code is correct just 1 question how you temple will get value in below variables.

{{ cart.attributes["Name of Regional Manager for Approval - "] }}

And

{{ cart.attributes["E-mail of Regional/Corporate Manager - "] }}

If user is entering it then it’s fine but you have to validate before proceed further. If these informations are mandatory.

It is setup as “Short Answer” Fields, to be filled in. It is the answers from those short answer fields I need to have come through on the New Order Notifications.

Would you mind sharing store url using comment or private msg.

Ended up being a pretty easy fix. Just added this into New Order Notification and all good -

Additional Details

{% for attribute in attributes %}

{{ attribute | first }}: {{ attribute | last }}

{% endfor %}