Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/symsensor/actuatormailerbundle
Extension for the ActuatorBundle which provides health checking capabilities for the symfony mailer component.
https://github.com/symsensor/actuatormailerbundle
actuator symfony symfony-bundle symfony-mailer
Last synced: about 1 month ago
JSON representation
Extension for the ActuatorBundle which provides health checking capabilities for the symfony mailer component.
- Host: GitHub
- URL: https://github.com/symsensor/actuatormailerbundle
- Owner: SymSensor
- License: mit
- Created: 2023-08-11T13:59:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-06T14:20:49.000Z (12 months ago)
- Last Synced: 2024-10-13T06:21:17.381Z (about 1 month ago)
- Topics: actuator, symfony, symfony-bundle, symfony-mailer
- Language: PHP
- Size: 175 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ActuatorMailerBundle
ActuatorMailerBundle extends [ActuatorBundle](https://github.com/SymSensor/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](https://getcomposer.org/doc/00-intro.md)
of the Composer documentation.### Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
```console
$ 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:```console
$ 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:```php
// config/bundles.phpreturn [
// ...
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:
```yaml
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](https://twitter.com/ArkadiuszKondas)