MailChimp
How can I push sys_accounts -> 'ip' filed to Mailchimp alongside the account details?
I've made the following changes on the method BxMailchimpModule:: serviceGetLists() but it does not seem to work:
return array ( 'email_address' => $oAccount->getEmail(), 'status' => $aInfoAccount['receive_news'] ? 'subscribed' : 'unsubscribed', 'ip' => $aInfoAccount['ip'], 'merge_fields' => $aMarkers );
any idea, what's wrong with that?