simpod/sms-manager

This package is abandoned and no longer maintained. No replacement package was suggested.

PHP library for sending SMS via SmsManager.cz

v0.1.1 2020-03-29 13:18 UTC

This package is auto-updated.

Last update: 2020-03-29 13:21:20 UTC


README

Build Status Quality Score Downloads Code Coverage GitHub Issues

Library for PHP that can send SMS messages via SmsManager.cz gateway. (not all API methods are implemented for now)

Installation

composer require simpod/sms-manager

Usage

Use SmsManager interface in your code, eg.:

public function __construct(SmsManager $smsManager) {
    ...
}

and alias SMSManager to ApiSmsManager for your production usage.

Example with Symfony:

services:
    SimPod\SmsManager\SmsManager:
        alias: SimPod\SmsManager\ApiSmsManager

To send message, create new SmsMessage:

$smsMessage = new SmsMessage(
    'message text',
    [
        '+420777888999'
    ],
    RequestType::getRequestTypeLow() // optional, defaults to High
    'sender' // optional
    1 // optional, CustomID
);

$smsManager->send($smsMessage);

Third parameter of SmsMessage is RequestType that is represented by RequestType class. Eg. low request type is instantiated with RequestType::getRequestTypeLow().