0

我正在开发自定义扩展。我面临两个问题。

1) 我在Locale->en_Us->template->email->testEmail.hmtl. 这是我的配置,.xml 代码:

   <template>    <email>
    <mymodule_email_settings_client_email_template>
                    <label>Follow up Emails</label>
                    <file>test_email.html</file>
                    <type>html</type>
                </mymodule_email_settings_client_email_template>
                </email>
            </template>

当我尝试将它加载到我的控制器中时,它会将我返回为空。这是我访问模板的代码。

$emailTemplate  = Mage::getModel('core/email_template')->loadDefault('mymodule_email_settings_client_email_template');   

2) 我想通过那里的 ids 加载事务和时事通讯模板。我有 id 但不知道如何在我的自定义电子邮件上使用该模板。我只想要代码来访问上面的模板,仅此而已。可以我在我的自定义电子邮件中使用该模板?谢谢

4

1 回答 1

0

请检查以下用于定义自定义电子邮件模板的链接

http://www.excellencemagentoblog.com/magento-sending-custom-emails

http://www.atwix.com/magento/emails-for-custom-events/

希望这对你有帮助

于 2013-10-29T06:23:03.680 回答