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