Thursday, 30 June 2011

Send Every Store Activity Email To Store Owner In Magento

We can do this by editiing Templete.php file at the location given below
app\code\core\Mage\Core\Model\Email
search for code below
$this->setSentSuccess($this->send($email, $name, $vars));
and just below the searched code paste the code given.
$this->setSentSuccess($this->send('owner@store.com', $name, $vars));
now every email that shoots from Magento store it will deliverd to owner also.

No comments:

Post a Comment