ActuatorMailerBundle extends ActuatorBundle by providing health indicator and information collector for the symfony mailer component.
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Open a command console, enter your project directory and execute:
$ composer require symsensor/actuator-mailer-bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require symsensor/actuator-mailer-bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
// config/bundles.php
return [
// ...
SymSensor\ActuatorBundle\SymSensorActuatorMailerBundle::class => ['all' => true],
];
The Bundle can be configured with a configuration file named config/packages/sym_sensor_actuator.yaml
. Following snippet shows the default value for all configurations:
sym_sensor_actuator_mailer:
enabled: true
transports:
default:
service: mailer.default_transport
ActuatorBundle is released under the MIT Licence. See the bundled LICENSE file for details.
Originally developed by Arkadiusz Kondas