Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/symfony/twilio-notifier
Symfony Twilio Notifier Bridge
https://github.com/symfony/twilio-notifier
component notifier php sms symfony symfony-component twilio
Last synced: about 1 month ago
JSON representation
Symfony Twilio Notifier Bridge
- Host: GitHub
- URL: https://github.com/symfony/twilio-notifier
- Owner: symfony
- License: mit
- Created: 2019-10-05T11:56:16.000Z (about 5 years ago)
- Default Branch: 7.1
- Last Pushed: 2024-09-27T08:42:14.000Z (about 2 months ago)
- Last Synced: 2024-09-30T17:20:58.355Z (about 2 months ago)
- Topics: component, notifier, php, sms, symfony, symfony-component, twilio
- Language: PHP
- Homepage: https://symfony.com/notifier
- Size: 117 KB
- Stars: 12
- Watchers: 5
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Twilio Notifier
===============Provides [Twilio](https://www.twilio.com) integration for Symfony Notifier.
DSN example
-----------```
TWILIO_DSN=twilio://SID:TOKEN@default?from=FROM
```where:
- `SID` is your Twillio ID
- `TOKEN` is your Twilio token
- `FROM` is your senderAdding Options to a Message
---------------------------With a Twilio Message, you can use the `TwilioOptions` class to add message options.
```php
use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Bridge\Twilio\TwilioOptions;$sms = new SmsMessage('+1411111111', 'My message');
$options = (new TwilioOptions())
->webhookUrl('test_webhook_url')
// ...
;// 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)