Magento – Override new order email in magento 2

emailemail-templatesmagento2orders

I have a custom module that needs to overwrite the new order email template, the location for the default email template is

vendor\magento\module-sales\view\frontendemail\order_new.html,

and this file get the data from

vendor\magento\module-sales\Model\Order\Email\Sender\OrderSender.php,

I need to override these two files from my custom module but I don't know how to do it

Best Answer

Your override file path is incorrect.

You have to just override order_new.html file at below location.

app/design/frontend/[Vendor_Name]/[Theme_Name]/Magento_Sales/email/order_new.html

Clear & Flush the Cache by using below command:-

sudo php bin/magento cache:clean
sudo php bin/magento cache:flush
Related Topic