Magento编辑电子邮件订单确认模板不在后端

时间:2014-03-14 15:16:23

标签: php magento email templates zend-framework

我想知道,订单确认电子邮件的电子邮件模板文件存储在magento中。我想编辑最后3行,包含税,运费和总额。

有谁知道它在哪里?

3 个答案:

答案 0 :(得分:1)

他们在template/sales/order/totals.phtml。但请注意,此文件也用于“我的帐户”页面。

相反,您应该通过向布局文件添加布局更新来覆盖它(主题中的fx local.xml):

<sales_email_order_items>
   <action method="setTemplate"><template>path/to/another/template.phtml</template></action>
</sales_email_order_items>

您可以在app/locale/country_code/email/sales/

中找到不同电子邮件的主模板

答案 1 :(得分:0)

  1. 请登录管理面板
  2. 转到系统 - &gt;交易电子邮件
  3. 点击&#34;添加新模板&#34;。
  4. 选择&#34;模板&#34;然后单击&#34;加载模板&#34;。
  5. 在加载的html模板中进行更改,然后单击&#34;保存模板&#34;。

答案 2 :(得分:0)

您还可以将主题设置为模块,在config.xml中添加模板覆盖,并在app / locale / en_US / template / email / themename中添加模板

<config>
  <global>
    <template>
        <email>
            <sales_email_order_template translate="label" module="sales">
                <label>New Order</label>
                <file>themename/sales/order_new.html</file>
                <type>html</type>
            </sales_email_order_template>
        </email>
    </template>
  </global>
</config>