소스 검색

[Administration] Communiquer : correctif MailForm

feature/rotating_product
Guillaume Bourgeois 6 달 전
부모
커밋
7f4ff8881f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      backend/models/MailForm.php

+ 2
- 2
backend/models/MailForm.php 파일 보기

@@ -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…
취소
저장