alexmanno / messagenet-sms-php

Client for messagenet sms gateway

Home Page:https://messagenet.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

messagenet-sms-php

Build Status codecov

Client for messagenet sms gateway

Prerequisites

You need a https://messagenet.com account for use this library.

Installation

composer require alexmanno/messagenet-sms-php

Usage

$client = new \AlexManno\Messagenet\Client\MessageNetClient(
    'YOUR-USER-ID',
    'YOUR-PASSWORD'
);

$message = new \AlexManno\Messagenet\Model\SmsMessage(
    ['DESTINATION-NUMBER'], 
    'TEXT'
);

$client->sendSms($message);

About

Client for messagenet sms gateway

https://messagenet.com

License:Apache License 2.0


Languages

Language:PHP 100.0%