$response = $mj->post(\Mailjet\Resources::$Email, ['body' => $body]); | $response = $mj->post(\Mailjet\Resources::$Email, ['body' => $body]); | ||||
} | } | ||||
return $response->success() ; | |||||
$success = $response->success() ; | |||||
if($success) { | |||||
return true ; | |||||
} | |||||
else { | |||||
Yii::error($response->getBody(), 'Mailjet'); | |||||
return false ; | |||||
} | |||||
} | } | ||||
} | } |