PHP code example of melipayamak / yii2

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

    

melipayamak / yii2 example snippets


composer 

'Melipayamak' => [
            'class' => 'Melipayamak\Yii2\Melipayamak',
            'username' => 'Your username',
            'password' => 'Your password'
        ]


try{
    $api = Yii::$app->Melipayamak->Api();
    $sms = $api->sms();
    $to = '09123456789';
    $from = '5000...';
    $text = 'تست وب سرویس ملی پیامک';
    $response = $sms->send($to,$from,$text);
    $json = json_decode($response);
    return $json->Value; //RecId or Error Number 
}catch(Exception $e){
    return $e->getMessage();
}

// وب سرویس پیامک
$smsRest = $api->sms();
$smsSoap = $api->sms('soap');
// وب سرویس تیکت پشتیبانی
$ticket = $api->ticket();
// وب سرویس برای مدیریت کامل  ارسال انبوه پیامک
$branch = $api->branch();
//وب سرویس کاربران
$users = $api->users();
//وب سرویس دفترچه تلفن
$contacts = $api->contacts()