Ship To
{{#each shipment in order.shipping}}
{{#with shipment.address}}
{{fullName}}
{{address1}}
{{#if address2}}{{address2}},{{/if}}
{{city}}, {{region}} {{postal}} {{country}}
{{phone}}
{{/with}}
{{/each}}
Bill To
{{#each payment in order.payments}}
{{#with payment.address}}
{{fullName}}
{{address1}}
{{#if address2}}{{address2}},{{/if}}
{{city}}, {{region}} {{postal}} {{country}}
{{phone}}
{{/with}}
{{/each}}