benmorel / messente
Client library for the Messente SMS gateway
Fund package maintenance!
BenMorel
Installs: 203
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/benmorel/messente
Requires
- php: >=7.1
- guzzlehttp/guzzle: 6.*
This package is auto-updated.
Last update: 2025-09-21 04:09:43 UTC
README
A PHP client to send SMS messages through the Messente platform.
Installation
This library is installable via Composer:
composer require benmorel/messente
Requirements
This library requires PHP 7.1 or later.
Quick start
Sending an SMS:
$messente = new Messente('username', 'password'); $messageId = $messente->send('Hello word', '+441234567890'); // optionally provide the sender number
Querying an SMS status:
$messente->getStatus($messageId); // 'SENT', 'FAILED' or 'DELIVERED'