Source : frontend\default\your_theme\template\page\html\header.phtml
Put This Code:
<?php $count = $this->helper('checkout/cart')->getSummaryCount(); //get total items in cart $total = $this->helper('checkout/cart')->getQuote()->getGrandTotal();...
Wednesday, July 22, 2015
Sending custom emails in Magento
Step 1: Create html file in app/locale/en_us/template/email/sales/sample_order.html
-> sample_order.html file in put your html (Mail sending) content.
Step 2: Adding your template to etc/config.xml to register the email template.
-> app/code/[codePool]/[Namespace]/[Module]/etc/config.xml
...