PHP code example of edzima / yii2-adescom

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

    

edzima / yii2-adescom example snippets


'components' => [
    'sms' => [
        'class' => 'Edzima\Yii2Adescom\AdescomSoap',
        'login' => 'your_login',
        'password' => 'your_password',
        // overwrite default 
        'composeConfig' => [
            'class' => 'Edzima\Yii2Adescom\models\SmsSendRequest',
            'overwriteSrc' => 'EDZIMA'
        ],   
        'wsdlHost' => 'other.host.com',
        'keySessionIdCache' => null // disable cache sessionId
        'loginDuration' => 7200,
    ]
    // ...
]

$message = Yii::$app->sms->compose([
	'message' => 'Test',
	'src' => 'Src',
	'dst' => 'Dst',
	'overwriteSrc' => 'Overwrite',
	'maxRetryCount' => 1,
	'retryInterval' => 60,
	]
);

$message = Yii->$app->sms->compose()
    ->setSrc('Source Number')
    ->setOverwriteSrc('Overwrite Text')
    ->setDst('Destination Number')
    ->setRetryInterval(60)
    ->setMaxRetryCount(1)
    ->setMessage('Message Text');

$smsId = Yii->$app->sms->send($message);

$ php composer.phar