Order Email not showing product list - Magento 2.4.3-p2

Viewed 475
1 Answers

Check the email templates, find and replace:

{{layout handle="sales_email_order_items" order=$order area="frontend"}}

to

{{layout handle="sales_email_order_items" order_id=$order_id area="frontend"}}

ie. The variable order is changed to order_id

Related