File manager - Edit - /home/asiatechinc/public_html/bhrhotelsindia.com/vendor/symfony/postmark-mailer/Transport/PostmarkTransportFactory.php
Back
<?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']; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings