If you are using custom cart attributes and want that information to appear within your internal pickup and delivery emails, you can use the following code snippet.
{% for note_attribute in note_attributes %}
{% if note_attribute.name == 'Custom-Attribute-Name' %}
<p><strong>{{note_attribute.name}}:</strong> {{ note_attribute.value }}</p>
{% endif %}{% endfor %}
Just remember to replace the word Custom-Attribute-Name
with your attribute's own name. Please note that the code is case-sensitive.
If you have multiple attributes you could also use code to display them all:
{% for note_attribute in note_attributes %}
{% switch note_attribute.name %}
{% case "Custom-Attribute-Name" %}
<p><strong>{{note_attribute.name}}:</strong><br/>
{{ note_attribute.value }}</p>
{% break %}
{% case "Custom-Attribute-Name-2" %}
<p><strong>{{note_attribute.name}}:</strong><br/>
{{ note_attribute.value }}</p>
{% break %}
{% endif %}
{% endfor %}