ensostudio / sms-smsc
smsc.ru gateway for ensostudio/sms
v1.0.0
2025-04-18 20:16 UTC
Requires
- ensostudio/sms: ^1.0
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-04-18 20:29:16 UTC
README
SMS gateway for service smsc.ru
Example
Use GuzzleHttp to send request:
$gateway = new \EnsoStudio\Sms\Gateway\SmscGateway( ['apiKey' => '...'], new \GuzzleHttp\Client(), new \GuzzleHttp\Psr7\HttpFactory() ); $result = $gateway->sendSms('Test message', [\EnsoStudio\Sms\PhoneUtils::sanitizeNumber('+7 905 710-71-71')]); if (!$result->isSuccess()) { // error handler for $result->getErrors() }