Working with clients in Magento brings numerous challanges and recently one of our clients came up with such an issue where his customer accounts got hacked and he wanted us to generate new passwords and Email them to customers from his Magento store.
Unfortunately Magento stores get hacked sometime due to reasons such as installation of buggy Magento extensions, using an outdated version or many more you even don’t know the reason behind. In our case, Using Magento functions, this has to be done programmatically to save the hassle of doing it manually for each user. All we require is to create a custom code to generate new passwords for all registered users and send them in Email programmatically.
Use following code to Generate & Email New Password Programmatically to Customers in Magento
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php ini_set('display_errors',true); include 'app/Mage.php'; Mage::setIsDeveloperMode(true); Mage::app(); try { $collection = Mage::getResourceModel('customer/customer_collection'); /* Group Filter For particulor Group of customer */ /* $collection->addFieldToFilter('group_id',4); */ foreach ($collection as $customer) { $customer->setForceConfirmed(true); $sendPassToEmail = true; $customer->setPassword($customer->generatePassword()); $customer->save(); $customer->sendNewAccountEmail('registered', '', $customer->getStoreId()); echo "Email :".$customer->getEmail(); } } catch(Exception $e) { Mage::log($e->getMessage(),null,"resetpasswd.log",true); } |