{% if order.orderCustomer.salutation %}{{ order.orderCustomer.salutation.translated.letterName ~ ' ' }}{% endif %}{{ order.orderCustomer.firstName }} {{ order.orderCustomer.lastName }},
Attached to this email you will find the files to the order: {{ order.orderNumber }}
{% for lineItem in order.lineItems %}{% if lineItem.downloads is defined and lineItem.downloads|length %}
{{ lineItem.label|u.wordwrap(80) }} {% if lineItem.payload.productNumber is defined %}({{ lineItem.payload.productNumber|u.wordwrap(80) }}){% endif %}
-------------------------------------
{% for download in lineItem.downloads %}{% if download.accessGranted %}
{{ download.media.fileName }}.{{ download.media.fileExtension }} - {% set downloadLink = url('frontend.account.order.single.download', {'orderId': order.id, 'downloadId': download.id, 'deepLinkCode': order.deepLinkCode}) %}{{ downloadLink }}
{% endif %}{% endfor %}
{% endif %}{% endfor %}