Provides Twilio integration for Symfony Notifier.
TWILIO_DSN=twilio://SID:TOKEN@default?from=FROM
where:
SID
is your Twillio IDTOKEN
is your Twilio tokenFROM
is your sender
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);