Showing posts with label Magento contact us transaction mail type text to HTML format. Show all posts
Showing posts with label Magento contact us transaction mail type text to HTML format. Show all posts

Monday 26 September 2016

Change contact email template plain text to HTML format magento


Change contact email template plain text to HTML format magento

Open app/code/core/Mage/Contacts/etc/config.xml

Note: You can create your own module and override the contact module config.xml file.

<email>
   <contacts_email_email_template translate="label" module="contacts">
       <label>Contact Form</label>
       <file>contact_form.html</file>
       <type>text</type>
   </contacts_email_email_template>
</email>

Replace to

<email>
   <contacts_email_email_template translate="label" module="contacts">
       <label>Contact Form</label>
       <file>contact_form.html</file>
       <type>html</type>
   </contacts_email_email_template>
</email>