Spaces:
No application file
No application file
File size: 676 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<?php
declare(strict_types=1);
namespace Mautic\EmailBundle\Mailer\Transport;
use Symfony\Component\Mailer\Envelope;
use Symfony\Component\Mailer\Exception\TransportException;
use Symfony\Component\Mailer\SentMessage;
use Symfony\Component\Mailer\Transport\TransportInterface;
use Symfony\Component\Mime\RawMessage;
class InvalidTransport implements TransportInterface
{
public function send(RawMessage $message, Envelope $envelope = null): ?SentMessage
{
throw new TransportException('Unknown DSN scheme. Please make sure the mailer DSN is configured properly.');
}
public function __toString(): string
{
return 'invalid://';
}
}
|