Skip to main content

Posts

Showing posts with the label transactional email

Sending Transactional emails Magento

It's quite simple to send transactional emails within our custom code in magento. Below is the code snippet to send email.                 $templateId = 11; //its the transactional email template id                 $senderEmail = "no-reply@senderemail.com";                                $senderName = Mage::app()->getStore()->getName();                                 $sender = array('name' => $senderName,                                 'email' => $senderEmail);  ...