BaseMax / PHP-Ippanel-SMS

A PHP-based class to communicate with ippanel.com webservice to send a fast SMS to your client, its pattern sending and purpose of this kind of SMSs are fast sending and send verification code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP-Ippanel-SMS

A PHP-based class to communicate with ippanel.com webservice to send a fast SMS to your client, its pattern sending and purpose of this kind of SMSs are fast sending and send verification code.

Example

Take a look at the example.php file:

<?php
// Load the class
require "ippanel.php";

// Define the class
$sms = new SmsIppanel();
// Set the Key
$sms->setKey('ROlxxxxxim-xxxx=');
// Set the Pattern Key
$sms->setPattern('d2re6xxxxx');
// Set phonennumber sender
$sms->setNumber('9890000145');
// Pass target phone number and the verification code
$res = $sms->sendPattern('0912xxxxxxx', rand(1000, 9999));

var_dump($res);

http://ippanel.com/

© Copyright 2021, Max Base

About

A PHP-based class to communicate with ippanel.com webservice to send a fast SMS to your client, its pattern sending and purpose of this kind of SMSs are fast sending and send verification code.

License:GNU General Public License v3.0


Languages

Language:PHP 100.0%