symfony/twilio-notifier

Symfony Twilio Notifier Bridge

Installs: 583 307

Dependents: 3

Suggesters: 1

Security: 0

Stars: 12

Watchers: 5

Forks: 4

Type:symfony-notifier-bridge


README

Provides Twilio 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.

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