if(count($body['Messages']) > 0) { | if(count($body['Messages']) > 0) { | ||||
$response = $mj->post(\Mailjet\Resources::$Email, ['body' => $body]); | $response = $mj->post(\Mailjet\Resources::$Email, ['body' => $body]); | ||||
} | } | ||||
$success = $response->success() ; | |||||
$success = (isset($response) && $response) ? $response->success() : false ; | |||||
if(!$success) { | if(!$success) { | ||||
Yii::error($response->getBody(), 'Mailjet'); | Yii::error($response->getBody(), 'Mailjet'); |