smsgateway24 / smsgateway24-php-sdk
php sdk for smsgateway24.com
Requires
- php: ^7.1
- guzzlehttp/guzzle: >=6
This package is not auto-updated.
Last update: 2021-03-04 12:31:52 UTC
README
SmsGateWay24 is a service that can turn you android phone to gateway and you can start sending messages throw it.
PHP SDK
PHP library for SmsGateWay24 API interaction.
Requires:
- PHP 7.1+
Here's a demo of how you can use it:
use \SmsGateway24\SmsGateway24; $gateway = new SmsGateway24('your-api-token-here'); // get it in your profile $to = "+79001234567"; $message = "Hello, how are you?"; $deviceId = 12345; // get it in your profile after app installation on your android $customerid = 12; // Optional. your internal customer ID. $urgent = 1; // Optional. 1 or 0 to make sms Urgent. $gateway->addSms($to, $message, $deviceId, $customerid, $urgent);
After that, the phone with the Smsgateway24 application calls the server and takes the SMS and sends it from your sim card.
Getting Started
Visit our website, sign up and install app on your phone. Get your API token and device id.
Install the package via composer:
composer require smsgateway24/smsgateway24-php-sdk
API Methods
Add SMS to queue
Creates SMS on the server to send.
use \SmsGateway24\SmsGateway24; $gateway = new SmsGateway24('your-api-token-here'); // get it in your profile $to = "+79001234567"; $message = "Hello, how are you?"; $deviceId = 12345; $timeToSend = '2018-10-25 00:00:00'; // (optional) you can set the date when you want to send the message $sim = 0; // (optional) if you phone have some sim cards you can choose which you want to use $smsId = $gateway->addSms($to, $message, $deviceId, $timeToSend, $sim); echo $smsId;
Get SMS status
You can find out the status of each SMS using this method
use \SmsGateway24\SmsGateway24; $gateway = new SmsGateway24('your-api-token-here'); // get it in your profile $smsId = 12345; $statusResult = $gateway->getSmsStatus($smsId); print_r($statusResult);
Get device status
use \SmsGateway24\SmsGateway24; $gateway = new SmsGateway24('your-api-token-here'); // get it in your profile $deviceId = 12345; // get it in your profile $statusResult = $gateway->getDeviceStatus($deviceId); print_r($statusResult);
Add Tag
Add contacts for any tag. For example, for the tag * Employees * your colleagues will perfectly fit.
use \SmsGateway24\SmsGateway24; $gateway = new SmsGateway24('your-api-token-here'); // get it in your profile $tagId = $gateway->saveTag("Rich customers"); echo $tagId;
Save Contact
Add contacts for any tag. For example, for the tag * Employees * your colleagues will perfectly fit.
use \SmsGateway24\SmsGateway24; $gateway = new SmsGateway24('your-api-token-here'); // get it in your profile $contactName = 'John Doe'; $phoneNum = '+79001233456'; $tagId = 2456; $contactId = $gateway->saveContact($contactName, $phoneNum, $tagId); echo $contactId;
Create a Newsletter
Once you have created the tag, you can do the mailing on the tag phones.
use \SmsGateway24\SmsGateway24; $gateway = new SmsGateway24('your-api-token-here'); // get it in your profile $paketTitle = 'some title'; $deviceId = 1234; // get it in your profile $body = 'body text'; $tags = [12, 13, 14]; // ids $paketId = $gateway->savePaket($paketTitle, $deviceId, $body, $tags); echo $paketId;
Contributing
Contributions are welcome!