'Champs obligatoire'], [['id_distribution'],'integer'] ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'subject' => 'Sujet', 'message' => 'Message', 'id_distribution' => 'Distribution' ]; } /** * Envoie un email aux utilisateurs définis en paramètre. * * @param array $usersArray * @param boolean $fromProducer */ public function sendEmail($usersArray, $fromProducer = true) { $mj = new \Mailjet\Client( Mailjet::getApiKey('public'), Mailjet::getApiKey('private'), true, ['version' => 'v3.1'] ); $body = ['Messages' => []] ; $messageAutoText = '' ; $messageAutoHtml = '' ; if($this->id_distribution) { $messageAutoText = ' ' ; $messageAutoHtml = '

' ; $distribution = Distribution::searchOne(['id' => $this->id_distribution]) ; if($distribution) { $linkOrder = Yii::$app->urlManagerProducer->createAbsoluteUrl(['order/order','slug_producer' => GlobalParam::getCurrentProducer()->slug, 'date' => $distribution->date]) ; $dateOrder = strftime('%A %d %B %Y', strtotime($distribution->date)) ; $messageAutoHtml .= 'Passer ma commande du '.$dateOrder.'' ; $messageAutoText .= 'Suivez ce lien pour passer votre commande du '.$dateOrder.' : '.$linkOrder ; $productsArray = Product::find() ->where([ 'id_producer' => GlobalParam::getCurrentProducerId(), ]) ->innerJoinWith(['productDistribution' => function($query) use($distribution) { $query->andOnCondition([ 'product_distribution.id_distribution' => $distribution->id, 'product_distribution.active' => 1 ]); }]) ->orderBy('product.name ASC') ->all(); if(count($productsArray) > 1) { $messageAutoHtml .= '

Produits disponibles :
' ; } } } if($fromProducer) { $producer = GlobalParam::getCurrentProducer() ; $fromEmail = $producer->getEmailOpendistrib() ; $fromName = $producer->name ; } else { $fromEmail = 'contact@opendistrib.net' ; $fromName = 'Opendistrib' ; } foreach($usersArray as $user) { $body['Messages'][] = [ 'From' => [ 'Email' => $fromEmail, 'Name' => $fromName ], 'To' => [ [ 'Email' => $user['email'], 'Name' => $user['name'].' '.$user['lastname'] ] ], 'Subject' => $this->subject, 'TextPart' => $this->message.$messageAutoText, 'HTMLPart' => nl2br($this->message).$messageAutoHtml ] ; if(count($body['Messages']) == 50) { $response = $mj->post(\Mailjet\Resources::$Email, ['body' => $body]); $body['Messages'] = [] ; } } if(count($body['Messages']) > 0) { $response = $mj->post(\Mailjet\Resources::$Email, ['body' => $body]); } $success = $response->success() ; if(!$success) { Yii::error($response->getBody(), 'Mailjet'); } return $response ; } }