Messente PHP client
A PHP client to send SMS messages through the Messente platform., (*1)
, (*2)
Installation
This library is installable via Composer:, (*3)
composer require benmorel/messente
Requirements
This library requires PHP 7.1 or later., (*4)
Quick start
Sending an SMS:, (*5)
$messente = new Messente('username', 'password');
$messageId = $messente->send('Hello word', '+441234567890'); // optionally provide the sender number
Querying an SMS status:, (*6)
$messente->getStatus($messageId); // 'SENT', 'FAILED' or 'DELIVERED'