3

我需要在管理系统配置中获取自定义电子邮件模板。

系统.xml

这是我的电子邮件模板字段代码。

<email_template>
    <label>Email Template</label>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
    <sort_order>5</sort_order>
    <frontend_type>select</frontend_type>
    <source_model>adminhtml/system_config_source_email_template</source_model>
</email_template>

配置文件

<template>
    <email>
    <custom_email_template translate="label" module="mymodule">
    <label>Custom Email Template</label>
    <file>mymodule/custom_email.html</file>
    <type>html</type>
    </custom_email_template>
    </email>
</template>
<default>
    <mymodulesettings>
      <email>
          <email_template>custom_email_template</email_template>
      </email>
    </mymodulesettings>
</default>

我在 locale/en_US/template/email/mymodule/ 路径中添加了 email.html 文件现在我得到了这样的输出 在此处输入图像描述

但我需要在该下拉列表中显示我的自定义电子邮件名称。喜欢:在此处输入图像描述

4

2 回答 2

5

我找到了我在config.xml文件中出错的解决方案。

我们必须像这样定义邮件模板

<template>
    <email>
        <{section_name}_{group_name}_{fields_name} translate="label" module="mymodule">
        <label>Custom Email Template</label>
        <file>mymodule/custom_email.html</file>
        <type>html</type>
        </{section_name}_{group_name}_{fields_name}>
    </email>
</template>

{section_name} {group_name} {fields_name} 在system.xml文件中。

干杯

于 2014-02-05T15:10:57.727 回答
1
于 2013-09-23T05:03:47.210 回答