当有人通过magento中的联系表单向我发送电子邮件时,电子邮件到达时没有布局,只显示整个布局代码。
应该是这样的:
呃 bericht verstuurd来自het contactformulier ,
- 姓名:test
- 电子邮件: jan@jan.nl
- 电话:nvt
Bericht:
Beste meneer / mevrouw Het bericht van de persoon模具联系 op heeft genomen
<小时/> 像这样进来:
<!--@vars
{"var data.name":"Sender Name",
"var data.email":"Sender Email",
"var data.telephone":"Sender Telephone",
"var data.comment":"Comment"}
@-->
<div style="font:11px/1.35em Verdana, Arial, Helvetica, sans-serif;">
<table cellspacing="0" cellpadding="0" border="0" width="98%" style="margin-top:10px; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; margin-bottom:10px;">
<tr>
<td align="center" valign="top">
<!-- [ header starts here] -->
<table cellspacing="0" cellpadding="0" border="0" width="650">
<tr>
<td valign="top">
<a href="http://www.mijndomeinnaam.nl/"><img src="http://www.mijndomeinnaam.nl/skin/frontend/default/grayscale/images/logo_email.gif" alt="omschrijving logo" style="margin-bottom:10px;" border="0"/></a></td>
</tr>
</table>
<!-- [ middle starts here] -->
<table cellspacing="0" cellpadding="0" border="0" width="650">
<tr>
<td valign="top">
<p><strong>Er is een bericht verstuurd via het contactformulier</strong>,</p>
<ul>
<li>Naam: Jan</li>
<li>E-mail: jan@jan.nl</li>
<li>Telefoon: nvt</li>
</ul>
<p><strong>Bericht:</strong></p>
<p>Beste meneer/mevrouw
Het bericht van de persoon die contact op heeft genomen
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
如何解决这个问题?
答案 0 :(得分:2)
更改
<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>
要
<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>
即:html而不是文本
答案 1 :(得分:1)
在您的magento数据库中,转到“core_email_template”表。在“template_type”列中,更改“2”的值。 (将此列应用于将此列设置为“1”的所有字段,或应用于要设置为HTML的所有字段,而不仅仅是文本)
执行此操作,您说这个电子邮件模板是HTML类型而不是文本。我希望它有效。