PHP code example of karamanisweb / simplesmsgreek

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

    

karamanisweb / simplesmsgreek example snippets


'driver' => env('SMS_DRIVER', 'smsn'),
'smsn' => [
    'username' => env('SMSN_USERNAME', 'Your Smsn Username'),
    'password' => env('SMSN_PASSWORD', 'Your Smsn Password'),
    'unicode' => env('SMSN_UNICODE', false),
    ]

'driver' => env('SMS_DRIVER', 'ez4us'),
'ez4us' => [
    'username' => env('EZ4US_USERNAME', 'Your Ez4us Username'),
    'password' => env('EZ4US_PASSWORD', 'Your Ez4us Password'),
    'unicode' => env('EZ4US_UNICODE', false),
    ]

'driver' => env('SMS_DRIVER', 'smsnetgr'),
'smsnetgr' => [
    'username' => env('SMSNETGR_USERNAME', 'Your Smsnetgr Username'),
    'api_password' => env('SMSNETGR_API_PASS', 'Your Smsnetgr API Password'),
    'api_token' => env('SMSNETGR_API_TOKEN', 'Your Smsnetgr API Token'),
    'unicode' => env('SMSNETGR_UNICODE', false),
    ]