|
- <?php
-
-
-
- namespace backend\models;
-
- use common\helpers\GlobalParam;
- use Yii;
- use yii\base\Model;
- use common\helpers\Price ;
-
-
- class MailForm extends Model
- {
-
- public $id_distribution ;
- public $subject;
- public $message;
-
-
-
- public function rules()
- {
- return [
- [['subject', 'message'], 'required', 'message' => 'Champs obligatoire'],
- [['id_distribution'],'integer']
- ];
- }
-
-
-
- public function attributeLabels()
- {
- return [
- 'subject' => 'Sujet',
- 'message' => 'Message',
- 'id_distribution' => 'Distribution'
- ];
- }
-
-
-
- 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 = '<br /><br />' ;
-
- $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 .= '<a href="'.$linkOrder.'">Passer ma commande du '.$dateOrder.'</a>' ;
- $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 .= '<br /><br />Produits disponibles : <br /><ul>' ;
- $messageAutoText .= '
-
- Produits disponibles :
- ' ;
- foreach($productsArray as $product) {
-
- $productDescription = $product->name ;
- if(strlen($product->description)) {
- $productDescription .= ' / '.$product->description ;
- }
- if($product->price) {
- $productDescription .= ' / '.Price::format($product->getPriceWithTax()) ;
- $productDescription .= ' ('.Product::strUnit($product->unit, 'wording_unit').')' ;
- }
-
- $messageAutoText .= '- '.$productDescription.'
- ' ;
- $messageAutoHtml .= '<li>'.Html::encode($productDescription).'</li>' ;
- }
- $messageAutoHtml .= '</ul>' ;
- }
- }
- }
-
- 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 ;
- }
-
- }
|