Explorar el Código

[Administration] Communiquer : correctif MailForm

feature/rotating_product
Guillaume Bourgeois hace 6 meses
padre
commit
7f4ff8881f
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      backend/models/MailForm.php

+ 2
- 2
backend/models/MailForm.php Ver fichero

@@ -239,8 +239,8 @@ Me désinscrire : ".$linkUnsubscribe;
if(count($body['Messages']) > 0) {
$response = $mj->post(\Mailjet\Resources::$Email, ['body' => $body]);
}
$success = $response->success() ;
$success = (isset($response) && $response) ? $response->success() : false ;
if(!$success) {
Yii::error($response->getBody(), 'Mailjet');

Cargando…
Cancelar
Guardar