Yesterday at work I needed to quickly get all the members of our various MailChimp lists. I ended up writing this short script that might be helpful to someone else, so here it is: include_once dirname(__FILE__) . '/MCAPI.class.php'; include_once dirname(__FILE__) . '/config.php'; //contains apikey $api = new MCAPI($apikey); //NB: last param is the # of …
↧