PHP code example of cloudlink / textmagic-laravel

1. Go to this page and download the library: Download cloudlink/textmagic-laravel 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/ */

    

cloudlink / textmagic-laravel example snippets


$client = new TextMagic();
try {
    $result = $client->messages->send(
        [
            'text' => 'Hello from TextMagic PHP',
            'phones' => implode(', ', ['99900000','99900001'])
        
    );
}
catch (\Exception $e) {
    //Error Handling Code Here
}
echo $result['id'];

$result = $client->lookups->lookup('999000000');

 php
CloudLink\TextMagic\TextMagicServiceProvider::class
 php
  
'TextMagic' => CloudLink\TextMagic\TextMagic::class