繁体   English   中英

无法使用magento 1.9.2社区版中的自定义模板发送电子邮件

[英]Not able to send email using custom template in magento 1.9.2 community edition

大家好,我正尝试使用自定义电子邮件模板在magento中发送电子邮件。 但是我遇到了例外,我已经安装了SMTP Pro Extension。

我在这里列出代码:-

我的config.xml

<template>
  <email>
    <custom_abc_email_template  module="custom_abc">
      <label>Custom Template</label>
      <file>custom_abc_templates/customTemplate.html</file>  // this specifies the path where the custom template is located
      <type>html</type>
    </custom_abc_email_template>
  </email>
</template>

我的控制器动作代码

$emailTemplate  = Mage::getModel('core/email_template')->loadDefault('custom_abc_email_template');
$emailTemplate->setSenderName('custom template');
$emailTemplate->setSenderEmail('abc@demomail.com');
$emailTemplate->send('abc@demomail.com','Forgot Password');

我的模板文件代码

<table cellpadding="0" cellspacing="0" border="0">
    <tr>
        <td class="action-content">
            <h1>Custom Abc,</h1>
            <p><strong>Your new password is:</strong> trolled</p>
            <p>You can change your password at any time by logging into <a href="{{store url="customer/account/"}}">your account</a>.</p>
        </td>
    </tr>
</table>

在exception.log

2016-04-11T10:03:18+00:00 ERR (3): exception 'Exception' with message
'This letter cannot be sent.' in /var/www/html/MMM/app/code/local/Aschroder/SMTPPro/Model/Email/Template.php:40

在aschroder_smtppro.log中

2016-04-11T10:03:18+00:00 DEBUG (7): Email is not valid for sending, 
this is a core error that often means there's a problem with your email templates.

在后端设置电子邮件 在此处输入图片说明

使用这个模板

<table cellpadding="0" cellspacing="0" border="0">
<tr>
    <td class="action-content">
        <h1>Custom Abc,</h1>
        <p><strong>Your new password is:</strong> trolled</p>
        <p>You can change your password at any time by logging into <a href="{{store url='customer/account/'}}">your account</a>.</p>
    </td>
</tr>

解决了与Magento系统电子邮件设置更改相同的异常。 例外是在插件的电子邮件模板代码中设置的(请参见下文)。

在管理中,从顶部菜单中选择系统->配置,然后转到系统-邮件发送设置。 将“禁用电子邮件通信”设置为“否”。

if (!$this->isValidForSend()) {
    $_helper->log('Email is not valid for sending, this is a core error that often means there\'s a problem with your email templates.');
    Mage::logException(new Exception('This letter cannot be sent.')); // translation is intentionally omitted
    return false; }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM