### Description Symfony supports [sending webhooks](https://github.com/symfony/symfony/blob/7.4/src/Symfony/Component/Webhook/Messenger/SendWebhookHandler.php) ootb since it was introduced. Adding a dedicated channel for webhook would make it easy to notify consumers about some changes ### Example ```php $this->notifier->send( new UsageNotification( subject: "Usage Alert", message: $message, ), new WebhookRecipient($url, $secret), ); ```