symfony / bandwidth-notifier
Symfony Bandwidth Notifier Bridge
                                    Fund package maintenance!
                                                                            
                                                                                                                                        fabpot
                                                                                    
                                                                            
                                                                                                                                        nicolas-grekas
                                                                                    
                                                                            
                                                                                                                                        symfony.com/sponsor
                                                                                    
                                                                            
                                                                                                                                        Tidelift
                                                                                    
                                                                
Installs: 259
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 0
Type:symfony-notifier-bridge
pkg:composer/symfony/bandwidth-notifier
Requires
- php: >=8.4
 - symfony/http-client: ^7.4|^8.0
 - symfony/notifier: ^7.4|^8.0
 
Requires (Dev)
- symfony/event-dispatcher: ^7.4|^8.0
 
- 8.0.x-dev
 - v8.0.0-BETA1
 - 7.4.x-dev
 - v7.4.0-BETA1
 - 7.3.x-dev
 - v7.3.0
 - v7.3.0-RC1
 - v7.3.0-BETA1
 - 7.2.x-dev
 - v7.2.0
 - v7.2.0-RC1
 - v7.2.0-BETA1
 - 7.1.x-dev
 - v7.1.6
 - v7.1.5
 - v7.1.1
 - v7.1.0
 - v7.1.0-RC1
 - v7.1.0-BETA1
 - 7.0.x-dev
 - v7.0.8
 - v7.0.7
 - v7.0.3
 - v7.0.0
 - v7.0.0-RC1
 - v7.0.0-BETA1
 - 6.4.x-dev
 - v6.4.24
 - v6.4.13
 - v6.4.12
 - v6.4.8
 - v6.4.7
 - v6.4.3
 - v6.4.0
 - v6.4.0-RC1
 - v6.4.0-BETA1
 - 6.3.x-dev
 - v6.3.12
 - v6.3.0
 - v6.3.0-RC1
 - v6.3.0-BETA3
 - v6.3.0-BETA1
 
This package is auto-updated.
Last update: 2025-10-28 09:54:51 UTC
README
Provides Bandwidth integration for Symfony Notifier.
DSN example
BANDWIDTH_DSN=bandwidth://USERNAME:PASSWORD@default?from=FROM&account_id=ACCOUNT_ID&application_id=APPLICATION_ID&priority=PRIORITY
where:
USERNAMEis your Bandwidth usernamePASSWORDis your Bandwidth passwordFROMis your senderACCOUNT_IDis your account IDAPPLICATION_IDis your application IDPRIORITYis your priority (optional)
Adding Options to a Message
With a Bandwidth Message, you can use the BandwidthOptions class to add
message options.
use Symfony\Component\Notifier\Message\SmsMessage; use Symfony\Component\Notifier\Bridge\Bandwidth\BandwidthOptions; $sms = new SmsMessage('+1411111111', 'My message'); $options = (new BandwidthOptions()) ->media(['foo']) ->tag('tag') ->accountId('account_id') ->applicationId('application_id') ->expiration('test_expiration') ->priority('default') // ... ; // Add the custom options to the sms message and send the message $sms->options($options); $texter->send($sms);