Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/symfony/message-bird-notifier
Symfony MessageBird Notifier Bridge
https://github.com/symfony/message-bird-notifier
component message-bird notifier php sms symfony symfony-component
Last synced: about 1 month ago
JSON representation
Symfony MessageBird Notifier Bridge
- Host: GitHub
- URL: https://github.com/symfony/message-bird-notifier
- Owner: symfony
- License: mit
- Created: 2021-04-18T05:36:43.000Z (over 3 years ago)
- Default Branch: 7.1
- Last Pushed: 2024-09-27T08:42:17.000Z (about 2 months ago)
- Last Synced: 2024-09-30T16:04:22.562Z (about 2 months ago)
- Topics: component, message-bird, notifier, php, sms, symfony, symfony-component
- Language: PHP
- Homepage: https://symfony.com/notifier
- Size: 58.6 KB
- Stars: 8
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
MessageBird Notifier
====================Provides [MessageBird](https://www.messagebird.com/) integration for Symfony Notifier.
DSN example
-----------```
MESSAGEBIRD_DSN=messagebird://TOKEN@default?from=FROM
```where:
- `TOKEN` is your MessageBird token
- `FROM` is your senderAdding Options to a Message
---------------------------With a MessageBird Message, you can use the `MessageBirdOptions` class to add
[message options](https://developers.messagebird.com/api/sms-messaging/#send-outbound-sms).```php
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);
```Resources
---------* [Contributing](https://symfony.com/doc/current/contributing/index.html)
* [Report issues](https://github.com/symfony/symfony/issues) and
[send Pull Requests](https://github.com/symfony/symfony/pulls)
in the [main Symfony repository](https://github.com/symfony/symfony)