symsensor / actuator-mailer-bundle
Extension for the ActuatorBundle which provides health checking capabilities for the symfony mailer component.
Installs: 737
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- symfony/framework-bundle: ^6.0 || ^7.0
- symsensor/actuator-bundle: ^1.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.22
- mikey179/vfsstream: ^1.6
- phpstan/phpstan: ^1.10
- phpstan/phpstan-phpunit: ^1.1
- phpstan/phpstan-symfony: ^1.1
- phpunit/phpunit: ^10.3
- symfony/browser-kit: ^6.0
- symfony/mailer: ^6.0
- symfony/yaml: ^6.0
README
ActuatorMailerBundle extends ActuatorBundle by providing health indicator and information collector for the symfony mailer component.
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require symsensor/actuator-mailer-bundle
Applications that don't use Symfony Flex
Step 1: Download the 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
Step 2: Enable the 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], ];
Configuration
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
License
ActuatorBundle is released under the MIT Licence. See the bundled LICENSE file for details.
Author
Originally developed by Arkadiusz Kondas