Provides Ntfy integration for Symfony Notifier. The component should be introduced in Symfony 6.4 with this PR #50131. This bundle provides same functionalities for Symfony 5.4.x to 6.3.x.
# .env
NTFY_DSN=ntfy://[USER:PASSWORD]@default[:PORT]/TOPIC?[secureHttp=[on]]
where:
URL
is the ntfy server which you are using- if
default
is provided, this will default to the public ntfy server hosted on ntfy.sh.
- if
TOPIC
is the topic on this ntfy server.PORT
is an optional specific port.USER
andPASSWORD
are username and password in case of access control supported by the server
In case of a non-secure server, you can disable https by setting secureHttp=off
.
# config/packages/notifier.yaml
framework:
notifier:
texter_transports:
nfty: '%env(NTFY_DSN)%'
// src/Controller/TestController.php
namespace App\Controller;
use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\TexterInterface;
use Symfony\Component\Routing\Annotation\Route;
class TestController
{
/**
* @Route("/test")
*/
public function test(TexterInterface $texter)
{
$pushMessage = new PushMessage(
'Title',
'Message content',
new NtfyOptions(['tags' => ['warning'], 'priority' => 5])
);
$result = $texter->send($pushMessage);
// ...
}
}