icanboogie/bind-mailer
Binds icanboogie/prototype to ICanBoogie.
Maintainers
Requires
- php: >=5.5.0
- icanboogie/icanboogie: ^2.4.0
- icanboogie/mailer: ^1.1.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
BSD-3-Clause 8eba47a5125daef37be04da2d9d417af7d7dcc19
- Olivier Laviale <olivier.laviale.woop@gmail.com>
This package is auto-updated.
Last update: 2026-06-08 01:09:31 UTC
README
👁 Release
👁 Build Status
👁 HHVM
👁 Code Quality
👁 Code Coverage
👁 Packagist
The icanboogie/bind-mailer package binds icanboogie/mailer to ICanBoogie,
using its Autoconfig feature. It provides a configuration synthesizer for
the mailer config and prototype bindings for the Core instance.
<?php namespace ICanBoogie; require 'vendor/autoload.php'; $app = boot(); $config = $app->configs['mailer']; // obtain the "mailer" config. $config['deliverer']; // class name or callable to create the deliverer instance. $config['mailer']; // class name or callable to create the mailer instance. $app->mailer; //instance of ICanBoogie\Mailer\Mailer; $app->mail([ 'to' => "example@example.com", 'from' => "me@example.com", 'subject' => "Testing", 'body' => "Hello world!" ], $options = []);
Before and after the message is sent
If sender is defined in the mail() options the following events are triggered:
-
The
<class>:mail:beforeevent of class BeforeMailEvent is fired before the message is sent by the mailer. Third parties may use this event to alter the message or the mailer that will be used to send it. -
The
<class>:mailevent of class MailEvent is fired after the message was sent by the mailer. Third parties may use this event to alter the result returned by the mailer.
Where <class> is the class of the sender.
Requirements
The package requires PHP 5.5 or later.
Installation
The recommended way to install this package is through Composer:
$ composer require icanboogie/bind-mailer
The package only specifies a minimum version while requiring icanboogie/icanboogie and [icanboogie/prototype], you might want to specify which version to use in your "composer.json" file.
Cloning the repository
The package is available on GitHub, its repository can be cloned with the following command line:
$ git clone https://github.com/ICanBoogie/bind-mailer.git
Documentation
The package is documented as part of the ICanBoogie framework
documentation. You can generate the documentation for the package
and its dependencies with the make doc command. The documentation is generated in the
build/docs directory. ApiGen is required. The directory can later be
cleaned with the make clean command.
Testing
The test suite is ran with the make test command. PHPUnit and
Composer need to be globally available to run the suite. The command
installs dependencies as required. The make test-coverage command runs test suite and also
creates an HTML coverage report in "build/coverage". The directory can later be cleaned with
the make clean command.
The package is continuously tested by Travis CI.
👁 Build Status
👁 Code Coverage
License
icanboogie/bind-mailer is licensed under the New BSD License - See the LICENSE file for details.
