th3mouk / free-mobile-sms-cli
PHP Client using Free Mobile SMS Notification API to send free messages on your mobile phone.
Installs: 644
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/th3mouk/free-mobile-sms-cli
Requires
- php: ^5.6 || ^7.0
- guzzlehttp/guzzle: ^6.2.1
Requires (Dev)
- phpunit/phpunit: ^5.4.3
- sllh/php-cs-fixer-styleci-bridge: ^2.1
This package is auto-updated.
Last update: 2025-09-26 04:45:04 UTC
README
This library provides a client to send SMS notifications on your mobile phone, through the [Free Mobile](http://mobile .free.fr/) API.
Installation
Composer
composer require th3mouk/free-mobile-sms-cli ^1.0
Free Mobile
Go to your customer area.
Click on: Gérer mon compte > Mes Options > Notifications par SMS > Activer l'option
You got now your authentication key.
Usage
Client
use Th3Mouk\FreeMobileSMSNotif\Client; $login = 'test'; $pass = 'test'; $freeMobileClient = new Client($login, $pass); $response = $freeMobileClient->send('Test Message');
Response Codes
$response = $freeMobileClient->sendMessage('Test Message'); $code = $response->getStatusCode();
- 200: SMS Sent
- 400: Missing parameter
- 402: Too much SMS send in too little time
- 403: Service isn't active on your customer area, or login/pass incorrect
- 500: Error on servor side. Please retry later.
Please
Feel free to improve this library.