Skip to content

Instantly share code, notes, and snippets.

@anunay
Created December 3, 2013 05:21
Show Gist options
  • Save anunay/7764240 to your computer and use it in GitHub Desktop.
Save anunay/7764240 to your computer and use it in GitHub Desktop.
Magento: Subscriber List
<?php
require_once("./app/Mage.php");
Mage::app();
$collection = Mage::getResourceModel('newsletter/subscriber_collection')->load();
foreach($collection->getItems() as $subscriber) {
echo $subscriber->getSubscriberEmail();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment