Magento CSV Export All customer with Billing and Shipping Address
Magento CSV Export All customer with Billing and Shipping Address In this post we will show you how to create Magento CSV Export All customer for Billing and Shipping Address. hear we will show you Export All customer to CSV with Billing and Shipping Address. <?php require_once(‘app/Mage.php’); umask(0); Mage::app(); $customers_obj = Mage::getModel(‘customer/customer’)->getCollection(); $customers_obj->addAttributeToSelect(‘*’); $customers_data_array[0] = …
Magento CSV Export All customer with Billing and Shipping Address Read More »