Magento 2 – How to Call CMS Block in Email Templates

cms-blockemail-templatesmagento2

In Magento 1, we can call CMS Block in email templates like that:

{{block type="cms/block" block_id="mail_include_header"}}

I try above code for Magento 2, but it does not work.

How can we call CMS Block in email templates?

Best Answer

We can try:

{{block class="Magento\\Cms\\Block\\Block" area='frontend' block_id="mail_include_header"}}

We can see more how to add a block to email: vendor/magento/module-sales/view/frontend/email/shipment_new.html

Related Topic