Skip to content

[Notifier] Note about message bus usage in notification component #19297

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions notifier.rst
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,22 @@ Service Package D

The LINE Notify, Mastodon and Twitter integrations were introduced in Symfony 6.3.

.. caution::

If you have the messenger component installed, the default component
configuration implies sending notifications through the MessageBus.
If you don't have a message consumer running, messages will never be sent.
To send messages directly via the transport, add the following line to the configuration.

.. configuration-block::

.. code-block:: yaml

# config/packages/notifier.yaml
framework:
notifier:
message_bus: false

Chatters are configured using the ``chatter_transports`` setting:

.. code-block:: bash
Expand Down