Selaa lähdekoodia

[Administration] Communiquer : correctif MailForm

feature/rotating_product
Guillaume Bourgeois 6 kuukautta sitten
vanhempi
commit
7f4ff8881f
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      backend/models/MailForm.php

+ 2
- 2
backend/models/MailForm.php Näytä tiedosto

@@ -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');

Loading…
Peruuta
Tallenna