Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/symfony/plivo-notifier
Symfony Plivo Notifier Bridge
https://github.com/symfony/plivo-notifier
component notifier php plivo symfony symfony-component
Last synced: about 1 month ago
JSON representation
Symfony Plivo Notifier Bridge
- Host: GitHub
- URL: https://github.com/symfony/plivo-notifier
- Owner: symfony
- License: mit
- Created: 2022-12-02T16:09:45.000Z (almost 2 years ago)
- Default Branch: 7.1
- Last Pushed: 2024-09-27T08:38:39.000Z (about 2 months ago)
- Last Synced: 2024-09-30T16:03:26.926Z (about 1 month ago)
- Topics: component, notifier, php, plivo, symfony, symfony-component
- Language: PHP
- Homepage: https://symfony.com/notifier
- Size: 29.3 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Plivo Notifier
==============Provides [Plivo](https://www.plivo.com) integration for Symfony Notifier.
DSN example
-----------```
PLIVO_DSN=plivo://AUTH_ID:AUTH_TOKEN@default?from=FROM
```where:
- `AUTH_ID` is your Plivo Auth ID
- `AUTH_TOKEN` is your Plivo Auth Token
- `FROM` is your senderAdding Options to a Message
---------------------------With a Plivo Message, you can use the `PlivoOptions` class to add
[message options](https://www.plivo.com/docs/sms/api/message#send-a-message).```php
use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Bridge\Plivo\PlivoOptions;$sms = new SmsMessage('+1411111111', 'My message');
$options = (new PlivoOptions())
->log(true)
->method('POST')
->url('url')
->mediaUrls('media_urls')
->powerpackUuid('uuid')
->trackable(true)
->type('sms')
// ...
;// 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)