ソースを参照

Merge branch 'develop'

master
Guillaume Bourgeois 2ヶ月前
コミット
984f0259f2
1個のファイルの変更10行の追加1行の削除
  1. +10
    -1
      Notification/MailMailjetNotification.php

+ 10
- 1
Notification/MailMailjetNotification.php ファイルの表示

@@ -7,6 +7,7 @@ use Lc\SovBundle\Repository\Site\SiteStore;
use Lc\SovBundle\Solver\Setting\SettingSolver;
use Mailjet\MailjetSwiftMailer\SwiftMailer\MailjetTransport;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Symfony\Component\Mailer\MailerInterface;
use Twig\Environment;

class MailMailjetNotification
@@ -119,6 +120,14 @@ class MailMailjetNotification
);
}

return $this->transport->send($message);
// Classique
$transport = (new \Swift_SmtpTransport('smtp-placedulocal.alwaysdata.net', 587, 'tls'))
->setUsername('contact@placedulocal.fr')
->setPassword('7sgd5x2BVStJ69');
$mailer = new \Swift_Mailer($transport);
return $mailer->send($message);

// Mailjet
//return $this->transport->send($message);
}
}

読み込み中…
キャンセル
保存