It is possible to export all SKU names from each order in excel XML. You just need to add the following code to get the items in the order into the Content Template.
{% for item in order.items %}
{{ item.sku }}
{% endfor %}
{% for item in order.items %}
{{ item.sku }}
{% endfor %}
Published on: 03 / 20 / 2020