I'm using the MailChimp API to create campagins from my own site. This all works perfectly but for the time.
When I schedule my campaign for say 9:00 PM it will be listed in MailChimp for 11:00 PM. And it wil be send at 11:00 PM as well.
My account settings are set to Central Europe GMT +2 and my server time echo's te correct time as well.
This is my code:
$schedule = $mailchimp->call('campaigns/schedule', array(
'cid' => $campaign['id'],
'schedule_time' => $date // format yyyy-mm-dd hh:mm:ss
));