Emails

Add Variables to the Magento Emails

This article will demonstrate how to add variables to the Magento emails.
The example below will focus on adding the customer group into the order email for registered users template.
To start with, let’s take a look where Magento sends out the order email. This happens within the Mage_Sales_Model_Order class within the queueNewOrderEmail() method.
As …

Add a Custom Email Template in Magento

Within Magento there are a variety of different email templates ready for the merchant to use to send out order and account related emails to the customer. Occasionally, you’ll want to add a custom email template in Magento.
Email templates are stored within the locale/en_US/template/email directory with the sales related emails located within the sales …

Magento 1.9.1 Emails

As of Magento 1.9.1, all e-mails (including order confirmation and transactional) are now queued and sent via a cron schedule. If you have the AOE Scheduler extension installed, you will be able to view the status of the scheduled tasks configured in Magento. The task that is responsible for email queuing can be found within …