PHP code example of comilio / sms-send

1. Go to this page and download the library: Download comilio/sms-send 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/ */

    

comilio / sms-send example snippets


$my_sms = new Comilio\SmsMessage();
$my_sms->authenticate('your_username', 'your_password')
       ->setRecipients('+393400000000')
       ->send('Hello World!');