我正在进行自定义扩展。我面临两个问题。
1)我在Locale->en_Us->template->email->testEmail.hmtl
创建了一个自定义html页面。
这是我的配置,.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)我想在那里加载事务和新闻稿模板。我有id但不知道如何在我的自定义电子邮件上使用该模板。我只想要代码访问上面的模板只不过是那我可以在我的自定义电子邮件中使用这些模板吗?感谢
答案 0 :(得分:0)
请检查以下链接用于定义自定义电子邮件模板
http://www.excellencemagentoblog.com/magento-sending-custom-emails
http://www.atwix.com/magento/emails-for-custom-events/
希望这能帮到你