yiisoft / mailer-symfony
Adapter for `yiisoft/mailer` relying on `symfony/mailer`
Fund package maintenance!
Opencollective
yiisoft
Installs: 57 408
Dependents: 7
Suggesters: 1
Security: 0
Stars: 11
Watchers: 17
Forks: 5
Open Issues: 0
Requires
- php: ^8.1
- symfony/mailer: ^5.3|^6.0|^7.0
- symfony/mime: ^5.4|^6.2|^7.0
- yiisoft/mailer: ^6.0
Requires (Dev)
- ext-openssl: *
- maglnet/composer-require-checker: ^4.2
- phpunit/phpunit: ^10.5
- psr/event-dispatcher: ^1.0
- rector/rector: ^1.2
- roave/infection-static-analysis-plugin: ^1.25
- spatie/phpunit-watcher: ^1.23
- vimeo/psalm: ^5.4
- yiisoft/aliases: ^3.0
- yiisoft/di: ^1.2
- yiisoft/files: ^2.0
- yiisoft/psr-dummy-provider: ^1.0
- yiisoft/test-support: ^3.0
Suggests
- psr/event-dispatcher: Use PSR Event Dispatcher implementation for process before/after send events
This package is auto-updated.
Last update: 2024-10-18 08:29:46 UTC
README
Yii Mailer - Symfony Mailer Extension
This package is an adapter for yiisoft/mailer relying on symfony/mailer.
Requirements
- PHP 8.1 or higher.
Installation
The package could be installed with Composer:
composer require yiisoft/mailer-symfony
General usage
Creating a mailer:
use Yiisoft\Mailer\Symfony\Mailer; /** * @var \Symfony\Component\Mailer\Transport\TransportInterface $transport */ $mailer = new \Yiisoft\Mailer\Symfony\Mailer( $transport, );
Sending a mail message:
$message = (new \Yiisoft\Mailer\Message()) ->withFrom('from@domain.com') ->withTo('to@domain.com') ->withSubject('Message subject') ->withTextBody('Plain text content') ->withHtmlBody('<b>HTML content</b>'); $mailer->send($message); // Or several $mailer->sendMultiple([$message]);
Additional methods of the Yiisoft\Mailer\Symfony\Mailer
:
withEncryptor()
- Returns a new instance with the specified encryptor instance.withSigner()
- Returns a new instance with the specified signer instance.
For more information about signing and encrypting messages, see the corresponding section of the documentation.
For use in the Yii framework, see the configuration files:
Documentation
If you need help or have a question, the Yii Forum is a good place for that. You may also check out other Yii Community Resources.
License
The Yii Mailer - Symfony Mailer Extension is free software. It is released under the terms of the BSD License.
Please see LICENSE
for more information.
Maintained by Yii Software.