File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/symfony/mailer
Upload
[..]
CHANGELOG.md (4.52 KB)
Edit
Rename
Del
Command/
Rename
Del
DataCollector/
Rename
Del
Envelope.php (3.55 KB)
Edit
Rename
Del
Event/
Rename
Del
EventListener/
Rename
Del
Exception/
Rename
Del
Header/
Rename
Del
LICENSE (1.04 KB)
Edit
Rename
Del
Mailer.php (2.63 KB)
Edit
Rename
Del
MailerInterface.php (768 B)
Edit
Rename
Del
Messenger/
Rename
Del
README.md (2.18 KB)
Edit
Rename
Del
Test/
Rename
Del
Transport/
Rename
Del
Transport.php (8.02 KB)
Edit
Rename
Del
composer.json (1.32 KB)
Edit
Rename
Del
Edit: MailerInterface.php
<?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; use Symfony\Component\Mailer\Exception\TransportExceptionInterface; use Symfony\Component\Mime\RawMessage; /** * Interface for mailers able to send emails synchronously and/or asynchronously. * * Implementations must support synchronous and asynchronous sending. * * @author Fabien Potencier <fabien@symfony.com> */ interface MailerInterface { /** * @throws TransportExceptionInterface */ public function send(RawMessage $message, ?Envelope $envelope = null): void; }
Simpan