获取自定义配置到电子邮件模板(Magento)

时间:2016-03-30 05:20:35

标签: php email magento

是的。我的解释不太好,但我会试试。 如何从magento配置中获取数据到电子邮件模板。例如,我已经在商店信息上添加了新字段:

配置>一般>商店信息

我添加的字段是gst no,其代码如下所示。

的system.xml

<fields>
                    <gst_no>
                        <label>GST No</label>
                        <frontend_type>text</frontend_type>
                        <sort_order>31</sort_order>
                        <show_in_default>1</show_in_default>
                        <show_in_website>1</show_in_website>
                        <show_in_store>1</show_in_store>                    
                    </gst_no>
</fields>

它按预期运行。现在我如何在电子邮件模板上调用此值。例如

{{var store_email}}
换句话说,数据是变量。 或者如果有办法将GST字段设置为全局变量,如电子邮件,联系电话等。我已经尝试{{config path="general/store_information/gst_no"}}但是没有用。在php级别它会像这样工作Mage::getStoreConfig('general/store_information/gst_no');

提前感谢:)

1 个答案:

答案 0 :(得分:3)

你会走对的路。

在您的电子邮件模板中添加 {{config path =“general / store_information / gst_no”}}

现在登录管理面板并导航到系统 - &gt;权限 - &gt;变量

点击添加新变量,并在文本框中填入 general / store_information / gst_no 。将允许设置为

希望这能帮到你!