Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 sender

Adding 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)