Download the PHP package mghddev/magfa_sms without Composer
On this page you can find all versions of the php package mghddev/magfa_sms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package magfa_sms
Magfa API Client for sending sms
you can find usage of this library down here,
<?php
use mghddev\adp\AdpApiClient;
use mghddev\adp\ValueObject\Message;
use mghddev\adp\ValueObject\ReportVO;
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
include 'vendor/autoload.php';
$domain = '***';
$username = '******';
$password = '*********';
$client = new MagfaApiClient($domain, $username, $password);
$message = (new EnqueueVO())
->setTo('9891280***')
->setFrom('983000***')
->setMessage('سلام آقا')
->setMClass(1);
$result = $client->send([$message]);
$status = $client->getStatus([$result[0]]);
All versions of magfa_sms with dependencies
PHP Build Version
Package Version
Requires
ext-soap Version
*
ext-curl Version *
ext-curl Version *
The package mghddev/magfa_sms contains the following files
Loading the files please wait ....