Parcourir la source

Mailjet : envoi via SMTP

develop
Guillaume Bourgeois il y a 8 mois
Parent
révision
08214f3965
1 fichiers modifiés avec 10 ajouts et 1 suppressions
  1. +10
    -1
      Notification/MailMailjetNotification.php

+ 10
- 1
Notification/MailMailjetNotification.php Voir le fichier

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

Chargement…
Annuler
Enregistrer