symfony / message-bird-notifier
Symfony MessageBird Notifier Bridge
Package info
github.com/symfony/message-bird-notifier
Type:symfony-notifier-bridge
pkg:composer/symfony/message-bird-notifier
v8.1.0
2026-05-29 05:06 UTC
Requires
- php: >=8.4.1
- symfony/http-client: ^7.4|^8.0
- symfony/notifier: ^7.4|^8.0
This package is auto-updated.
Last update: 2026-06-05 06:51:15 UTC
README
Provides MessageBird integration for Symfony Notifier.
DSN example
MESSAGEBIRD_DSN=messagebird://TOKEN@default?from=FROM
where:
TOKENis your MessageBird tokenFROMis your sender
Adding Options to a Message
With a MessageBird Message, you can use the MessageBirdOptions class to add
message options.
use Symfony\Component\Notifier\Message\SmsMessage; use Symfony\Component\Notifier\Bridge\MessageBird\MessageBirdOptions; $sms = new SmsMessage('+1411111111', 'My message'); $options = (new MessageBirdOptions()) ->type('test_type') ->scheduledDatetime('test_scheduled_datetime') ->createdDatetime('test_created_datetime') ->dataCoding('test_data_coding') ->gateway(999) ->groupIds(['test_group_ids']) ->mClass(888) ->reference('test_reference') ->reportUrl('test_report_url') ->shortenUrls(true) ->typeDetails('test_type_details') ->validity(777) // ... ; // Add the custom options to the sms message and send the message $sms->options($options); $texter->send($sms);
Sponsor
This package is looking for a backer.
Help Symfony by sponsoring its development!