Download the PHP package andreaslyngholm/inmobile-sms-api without Composer
On this page you can find all versions of the php package andreaslyngholm/inmobile-sms-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download andreaslyngholm/inmobile-sms-api
More information about andreaslyngholm/inmobile-sms-api
Files in andreaslyngholm/inmobile-sms-api
Download andreaslyngholm/inmobile-sms-api
More information about andreaslyngholm/inmobile-sms-api
Files in andreaslyngholm/inmobile-sms-api
Vendor andreaslyngholm
Package inmobile-sms-api
Short Description PHP wrapper for interaction with the Inmobile SMS API
License MIT
Package inmobile-sms-api
Short Description PHP wrapper for interaction with the Inmobile SMS API
License MIT
Please rate this library. Is it a good library?
Informations about the package inmobile-sms-api
Inmobile SMS API Client for PHP
The Inmobile SMS API Client Library can be used for interaction with the Inmobile API.
Installation
Require this package with composer:
Basic usage
<?php
use Inmobile\Text;
use Inmobile\Gateway;
use Inmobile\Message;
use Inmobile\Recipient;
$gateway = Gateway::create('apiKey');
$message = Message::create('Hello world!')->from('My App')->to('4512345678');
$gateway->addMessage($message);
$gateway->send();
// Other capabilities:
$text = (new Text('Hello World'))->flash()->encoding('utf-8');
$recipients = [
(new Recipient('4512345678'))->withMessageId('my-id'),
'450000000'
];
Message::create($text)->to($recipients)->from('My App')->doNotRespectBlacklist()->scheduleAt(date_create('+1 hour'));
All versions of inmobile-sms-api with dependencies
PHP Build Version
Package Version
Requires
php Version
^7.4|^8.0
guzzlehttp/guzzle Version ^7.03
ext-dom Version *
ext-json Version *
ext-simplexml Version *
guzzlehttp/guzzle Version ^7.03
ext-dom Version *
ext-json Version *
ext-simplexml Version *
The package andreaslyngholm/inmobile-sms-api contains the following files
Loading the files please wait ....