https://github.com/symfony/novu-notifier
Provides Novu integration for Symfony Notifier.
https://github.com/symfony/novu-notifier
component notifier novu php symfony symfony-component
Last synced: 6 months ago
JSON representation
Provides Novu integration for Symfony Notifier.
- Host: GitHub
- URL: https://github.com/symfony/novu-notifier
- Owner: symfony
- License: mit
- Created: 2023-06-20T15:19:15.000Z (about 3 years ago)
- Default Branch: 7.3
- Last Pushed: 2025-11-27T13:47:35.000Z (8 months ago)
- Last Synced: 2025-11-30T06:53:21.627Z (8 months ago)
- Topics: component, notifier, novu, php, symfony, symfony-component
- Language: PHP
- Homepage: https://symfony.com/notifier
- Size: 31.3 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Novu Notifier
=============
Provides [Novu](https://novu.co/) integration for Symfony Notifier.
DSN example
-----------
```
NOVU_DSN=novu://API_KEY@default
```
Notification example
--------------------
```php
class NovuNotification extends Notification implements PushNotificationInterface
{
public function asPushMessage(
NovuSubscriberRecipient|RecipientInterface $recipient,
?string $transport = null,
): ?PushMessage {
return new PushMessage(
$this->getSubject(),
$this->getContent(),
new NovuOptions(
$recipient->getSubscriberId(),
$recipient->getFirstName(),
$recipient->getLastName(),
$recipient->getEmail(),
$recipient->getPhone(),
$recipient->getAvatar(),
$recipient->getLocale(),
$recipient->getOverrides(),
[],
),
);
}
}
```
```php
$notification = new NovuNotification;
$notification->subject('test');
$notification->channels(['push']);
$notification->content(
json_encode(
[
'param1' => 'Lorum Ipsum',
]
)
);
$this->notifier->send(
$notification,
new NovuSubscriberRecipient(
"123",
'Wouter',
'van der Loop',
'woutervdl@toppy.nl',
null,
null,
null,
[
'email' => [
'from' => 'no-reply@toppy.nl',
'senderName' => 'No-Reply',
],
],
),
);
```
Resources
---------
* [Contributing](https://symfony.com/doc/current/contributing/index.html)
* [Report issues](https://github.com/symfony/symfony/issues) and
[send Pull Requests](https://github.com/symfony/symfony/pulls)
in the [main Symfony repository](https://github.com/symfony/symfony)