Viewing file: MailjetTransportFactory.php (1.43 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */
namespace Symfony\Component\Mailer\Bridge\Mailjet\Transport;
use Symfony\Component\Mailer\Exception\UnsupportedSchemeException; use Symfony\Component\Mailer\Transport\AbstractTransportFactory; use Symfony\Component\Mailer\Transport\Dsn; use Symfony\Component\Mailer\Transport\TransportInterface;
class MailjetTransportFactory extends AbstractTransportFactory { public function create(Dsn $dsn): TransportInterface { $scheme = $dsn->getScheme(); $user = $this->getUser($dsn); $password = $this->getPassword($dsn); $host = 'default' === $dsn->getHost() ? null : $dsn->getHost();
if ('mailjet+api' === $scheme) { return (new MailjetApiTransport($user, $password, $this->client, $this->dispatcher, $this->logger))->setHost($host); }
if (\in_array($scheme, ['mailjet+smtp', 'mailjet+smtps', 'mailjet'])) { return new MailjetSmtpTransport($user, $password, $this->dispatcher, $this->logger); }
throw new UnsupportedSchemeException($dsn, 'mailjet', $this->getSupportedSchemes()); }
protected function getSupportedSchemes(): array { return ['mailjet', 'mailjet+api', 'mailjet+smtp', 'mailjet+smtps']; } }
|