partikule/spothit-sms-api

Spothit Library

Installs: 2 710

Dependents: 1

Suggesters: 0

Security: 0

Stars: 2

Watchers: 0

Forks: 2

Open Issues: 1

pkg:composer/partikule/spothit-sms-api

1.0.3 2019-06-11 21:22 UTC

This package is auto-updated.

Last update: 2025-12-12 11:52:07 UTC


README

Spot-hit SMS API PHP client.

Installation

The recommended way to install Spot-hit SMS API PHP client is through composer:

$ composer require partikule/spothit-sms-api

Usage

Sending simple SMS

<?php

$client = new Spothit\Api\Client('***API_KEY***');

$client->setSmsRecipients(['+336********']);
$client->setSmsSender('AnySender');

$client->send('Yiiii - This is my first SMS');