Magento email address?

I am trying to send an email from my magento module, but for some reason I cannot get the template to work:

The template is installed as follows:

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

Headers and all are sent correctly.

I created the application_status_email.html file in the application / locale / en_US / template / email , and the selected language in the admin panel is English (USA), Thoughts?

The template itself simply contains:

<div>
Message:
{{var message}}
</div>

But for some reason, my letters are sent without any content. I have another module sending emails, but from an interface that works great with a template located in the same folder ...

+3
1

:

<global>
  <template>
    <email>                                                                   
      <application_status_email>
        <label>Application Status Message</label>
        <file>application_status_email.html</file>
        <type>html</type>
      </application_status_email>
    </email>
  </template>
</global>

, !

,

+5

Source: https://habr.com/ru/post/1764156/


All Articles