Magento – Magento 2: Header & Footer Not Displaying in Email

designemailemail-templatesmagento2

In continue with

Magento 2: How to change Contact Us Email Type?

I have set my new template for Contact Us.

{{template config_path="design/email/header_template"}}

<table>
    <tr>
        <td>{{trans "Name: %name" name=$data.name}}</td>
    </tr>
    <tr>
        <td>{{trans "Email: %email" email=$data.email}}</td>
    </tr>
    <tr>
        <td>{{trans "Phone Number: %telephone" telephone=$data.telephone}}</td>
    </tr>
    <tr>
        <td>{{trans "Comment: %comment" comment=$data.comment}}</td>
    </tr>
</table>

{{template config_path="design/email/footer_template"}}

When i "Preview Template" from Admin, then it's showing Header & Footer.

In the Email it's not showing. I already cleared cache & run all commands.

Best Answer

<!--@vars {
"template config_path=\"design\/email\/footer_template\"":"Email Footer Template",
"template config_path=\"design\/email\/header_template\"":"Email Header Template"
} @-->

This will solve issue

Related Topic