jakubenglicky/sms-manager

PHP SDK for SMS Manager

v3.0.0 2022-08-11 21:07 UTC

This package is auto-updated.

Last update: 2024-04-16 11:36:32 UTC


README

Downloads this Month Build Latest version

SMS Manager PHP SDK

Library for sending SMS via https://smsmanager.cz/

Information about HTTP Request API https://smsmanager.cz/api/http

Instalation:

composer require jakubenglicky/sms-manager

Easy using:

$msg = new \jakubenglicky\SmsManager\Message\Message();
$msg->setTo(['+420777111222']);
$msg->setBody('Message text');

$client = new \jakubenglicky\SmsManager\Http\Client('api-key');
$client->send($msg);

Nette DI:

extensions:
	smsmanager: jakubenglicky\SmsManager\DI\SmsManagerExtension

smsmanager:
	apiKey: 'sms-manager-api-key'
    	

Use interface IClient for sending SMS in Nette.

SMS Tracy Panel

config.local.neon

tracy:
	bar:
		- jakubenglicky\SmsManager\Diagnostics\Panel(%tempDir%)

services:
	smsmanager:
		class: jakubenglicky\SmsManager\IClient
		factory: jakubenglicky\SmsManager\Diagnostics\DebugClient(%tempDir%)

This panel was inspired by the Nextras Mail Panel