PHP code example of symfony / all-my-sms-notifier

1. Go to this page and download the library: Download symfony/all-my-sms-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 / all-my-sms-notifier example snippets


use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Bridge\AllMySms\AllMySmsOptions;

$sms = new SmsMessage('+1411111111', 'My message');

$options = (new AllMySmsOptions())
    ->alerting(1)
    ->campaignName('API')
    ->cliMsgId('test_cli_msg_id')
    ->date('2023-05-23 23:47:25')
    ->simulate(1)
    ->uniqueIdentifier('unique_identifier')
    ->verbose(1)
    // ...
    ;

// Add the custom options to the sms message and send the message
$sms->options($options);

$texter->send($sms);