rossaddison / mailer
Yii Mailer Library
Fund package maintenance!
Opencollective
yiisoft
Requires
- php: ^8.1
- psr/event-dispatcher: ^1.0
- yiisoft/view: ^6.0|^7.0|^8.0|^9.0
Requires (Dev)
- maglnet/composer-require-checker: ^4.4
- phpunit/phpunit: ^10
- rector/rector: 1.0.*
- roave/infection-static-analysis-plugin: ^1.25
- spatie/phpunit-watcher: ^1.23
- vimeo/psalm: ^5.24
- yiisoft/files: ^2.0
- yiisoft/psr-dummy-provider: ^1.0
- yiisoft/test-support: ^3.0
Suggests
- rossaddison/mailer-symfony: Yii Mailer Library - Symfony Mailer Extension
- yiisoft/event-dispatcher: Yii Event Dispatcher
- yiisoft/mailer-swiftmailer: Yii Mailer Library - Swift Mailer Extension
This package is auto-updated.
Last update: 2024-12-16 10:33:13 UTC
README
Yii Mailer Library
The package provides the content composition functionality, and a basic interface for sending emails. Actual mail sending is provided by separate interchangeable packages.
Out of the box the package profiles a file mailer that, instead of actually sending an email, writes its contents into a file. There are also Swift Mailer and Symfony Mailer based official drivers available as a separate packages that actually can send emails.
Requirements
- PHP 8.1 or higher.
Installation
The package could be installed with Composer:
composer require yiisoft/mailer
General usage
The following code can be used to send an email:
/** * @var \Yiisoft\Mailer\MailerInterface $mailer */ $message = $mailer ->compose() ->withFrom('from@domain.com') ->withTo('to@domain.com') ->withSubject('Message subject') ->withTextBody('Plain text content') ->withHtmlBody('<b>HTML content</b>'); $mailer->send($message);
Localize view file
You can set a specific locale that will be used to localize view files with withLocale()
method:
/** * @var \Yiisoft\Mailer\MailerInterface $mailer */ $message = $mailer ->withLocale('de_DE') ->compose('html-view') ->withFrom('from@domain.com') ->withTo('to@domain.com') ->withSubject('Message subject'); $mailer->send($message);
Mailer implementations
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 Library is free software. It is released under the terms of the BSD License.
Please see LICENSE
for more information.
Maintained by Yii Software.