PHP code example of symfony / message-bird-notifier
1. Go to this page and download the library: Download symfony/message-bird-notifier library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
symfony / message-bird-notifier example snippets
use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Bridge\MessageBird\MessageBirdOptions;
$sms = new SmsMessage('+1411111111', 'My message');
$options = (new MessageBirdOptions())
->type('test_type')
->scheduledDatetime('test_scheduled_datetime')
->createdDatetime('test_created_datetime')
->dataCoding('test_data_coding')
->gateway(999)
->groupIds(['test_group_ids'])
->mClass(888)
->reference('test_reference')
->reportUrl('test_report_url')
->shortenUrls(true)
->typeDetails('test_type_details')
->validity(777)
// ...
;
// Add the custom options to the sms message and send the message
$sms->options($options);
$texter->send($sms);