mkebza / notificator-bundle
Symfony bundle for handling notification to user through different handlers
Installs: 135
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.1.3
- symfony/config: ~3.4|~4.0
- symfony/dependency-injection: ~3.4|~4.0
- symfony/event-dispatcher: ~3.4|~4.0
- symfony/options-resolver: ~3.4|~4.0
- symfony/swiftmailer-bundle: ^3.1
Requires (Dev)
- symfony/phpunit-bridge: ^4.1
This package is auto-updated.
Last update: 2025-03-29 00:44:15 UTC
README
This is simple bundle to manage notifications though different channels.
Installation
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require mkebza/notificator-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 mkebza/notificator-bundle
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new MKebza\Notificator\MKebzaNotificatorBundle(), ); // ... } // ... }
Configuration
You need to define at least one handler, otherwise your messeges aren't gonna be send. For handler is mandatory to define service handler.
m_kebza_notificator: handlers: email: service: MKebza\Notificator\Handler\Type\SwiftMailerHandler options: from_name: Foo Bar from_email: foo@bar.com email_second: service: MKebza\Notificator\Handler\Type\SwiftMailerHandler sms: MKebza\Notificator\Handler\Type\SwiftMailerHandler
Sending notification
First you have to implement your notification class, which has to implement
NotificationInterface
and service has to be tagged with mkebza_notificator.notification
namespace App\Notification; class TestNotification implements NotificationInterface { public function getChannels(NotifiableInterface $target): array { // Returns which channels this notification implements return [ 'email' ]; } // Renders notification for handler public function email(Notification $notification, array $options): Notification { $message = (new \Swift_Message()) ->setSubject('Test subject') ->setBody('Test'); return $notification->setContent($message); } }
Then you can send your notification. Parameter to notifable is configuration for each channel.
// $notificator is instance of service MKebza\Notificator\Notificator $notificator->send(new Notifiable(['email' => 'foo@bar.com']), TestNotification::class, ['data' => 'will_be_passed']);
You can have your objects implement MKebza\Notificator\NotifiableInterface
and then you can call
$notificator->send($user, TestNotification::class, ['data' => 'will_be_passed']); $notificator->send([$user1, $user2], TestNotification::class, ['data' => 'will_be_passed']);
Handlers
New handlers can be implemented, handler has to implement MKebza\Notificator\Handler\NotificationHandlerInterface