xenon/multisms 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

xenon/multisms

最新稳定版本:v1.3.0.2

Composer 安装命令:

composer require xenon/multisms

包简介

This is universal sms gateway service provider for Bangladesh. You can easily use this library for sending message using Bangladeshi sms gateway providers

README 文档

README

xenon/multisms is a universal sms sending library specially for Bangladesh.
You can integrate this library in your php application easily for sending sms to any Bangladeshi mobile number. This is for raw php as well.

Installation

composer require xenon/multisms

Sample Code

use Xenon\Multisms\Provider\BulkSmsBD;
use Xenon\Multisms\Sender;

require 'vendor/autoload.php';

$sender = Sender::getInstance();
try {
    $response = $sender->selectProvider(BulkSmsBD::class)
            ->setConfig(['username' => '017555XYZAB', 'password' => 'XXXXX'])
            ->setMessage('hello')
            ->setMobile('017XXXXXXX')
            ->send();
    var_dump($response);
} catch (Exception $e) {
    var_dump($e->getMessage());
}

Currently Supported SMS Gateways

  • BDBulkSMS
  • BulkSMSBD
  • MDLSMS
  • OnnoRokomSMS
  • SSLSms
  • MIMSMS

We are continuously working in this open source library for adding more Bangladeshi sms gateway. If you fee something is missing then make a issue regarding that. If you want to contribute in this library, then you are highly welcome to do that.

统计信息

  • 总下载量: 35
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 16
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 16
  • Watchers: 1
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-04-05