2017 © Pedro Peláez
 

library php-sms

PHP library to send messages using SMS gates

image

stee1cat/php-sms

PHP library to send messages using SMS gates

  • Saturday, May 9, 2015
  • by steelcat
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

A PHP library to send messages via SMS gates

Examle

use stee1cat\PhpSms\GateFactory;
use stee1cat\PhpSms\Message;

$sender = GateFactory::create('SmsAero');

$sender->setUser('<login>');
$sender->setPassword('<password>');

$message = new Message();
$message->setTo('75551234567');
$message->setFrom('php-sms');
$message->setText('Message');

$sender->setMessage($message);
$sender->send();

Available agents

The Versions

09/05 2015

dev-master

9999999-dev

PHP library to send messages using SMS gates

  Sources   Download

The Requires

  • php >=5.3.0

 

by Gennadiy Khatuntsev