mandrill - PHP API send email does nothing via Mandril -
i sending message based on php example in docs. looking through others suggestions have altered sending part follows ..
$async = false; $ip_pool = null; $send_at = null; $result = $mandrill->messages->send($message, $async, $ip_pool, $send_at); print_r($result);
i valid result ...
array ( [0] => array ( [email] => valid-email@gmail.com [status] => queued [_id] => 845a02f92f03487f95ff9bc5b5e33497 ) )
when check api logs says message sent if try ..
$result = $mandrill->messages->info($id);
with correct id result of no message found.
i can send email using mandril test page
Comments
Post a Comment