PHP code example of intoegy / sms

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

    

intoegy / sms example snippets




return [
    
    'username'      =>    env('SMS_USER','<username>'),
    'password'      =>    env('SMS_PASS','<password>'),
    'sender'        =>    env('SMS_SENDER','<your-approved-sender>),
     
    ];


'providers' => [
   // ...
   Intoegy\SMS\SMSServcieProvider::class,
   // ...
]

    SMS::send('201010000000','test message');

'aliases' => [

    "SMS"=>Intoegy\SMS\SMSServiceProvider::class,
    // ...
];
sh
php artisan vendor:publish --tag="sms-config"