granam/smsbranacz

SMSBrana.cz 允许通过API发送付费短信

2.0.1 2018-04-06 14:30 UTC

This package is auto-updated.

Last update: 2024-09-15 01:51:01 UTC


README

<?php
use \Granam\SmsBranaCz\SmsSender;

try {
    $smsSender = new SmsSender('your_smsbrana_cz_login', 'your_smsbrana_cz_password', new \GuzzleHttp\Client(['connection_timeout' => 30]));
    $smsSender->send(
        '+420123456789', // phone number
        'Your account has been activated, enjoy!' // message text
    );
} catch (\Granam\SmsBranaCz\Exceptions\Exception $smsException) {
    \trigger_error('Could not sent SMS: ' . $smsException->getMessage(), E_USER_WARNING);
}