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 ...