Skip to content

How to add special price in new order email template?

How can I add special price in email “New order” template?

Product block in email template:
{{layout handle="sales_email_order_items" order_id=$order_id area="frontend"}}

This is a product row with price.
vendor/magento/module-sales/view/frontend/templates/email/items/price/row.phtml

Now the price is the product of the number of pieces and the final price of the product (qty * final price).

I would like to show the regular price and the special price (qty * regular price and qty * special price, or just one item regular price and special price).

I know how to extend block, make a plugin etc. but I don’t know how to get special price from item.

Anybody help?

Thank you in advance.