Viewing file: PostmarkTransportFactory.php (1.82 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\Postmark\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;
/** * @author Konstantin Myakshin <molodchick@gmail.com> */ final class PostmarkTransportFactory extends AbstractTransportFactory { public function create(Dsn $dsn): TransportInterface { $transport = null; $scheme = $dsn->getScheme(); $user = $this->getUser($dsn);
if ('postmark+api' === $scheme) { $host = 'default' === $dsn->getHost() ? null : $dsn->getHost(); $port = $dsn->getPort();
$transport = (new PostmarkApiTransport($user, $this->client, $this->dispatcher, $this->logger))->setHost($host)->setPort($port); }
if ('postmark+smtp' === $scheme || 'postmark+smtps' === $scheme || 'postmark' === $scheme) { $transport = new PostmarkSmtpTransport($user, $this->dispatcher, $this->logger); }
if (null !== $transport) { $messageStream = $dsn->getOption('message_stream');
if (null !== $messageStream) { $transport->setMessageStream($messageStream); }
return $transport; }
throw new UnsupportedSchemeException($dsn, 'postmark', $this->getSupportedSchemes()); }
protected function getSupportedSchemes(): array { return ['postmark', 'postmark+api', 'postmark+smtp', 'postmark+smtps']; } }
|