saeedshoh/laravel-smpp
最新稳定版本:1.5
Composer 安装命令:
composer require saeedshoh/laravel-smpp
包简介
SMS sending via SMPP protocol for Laravel framework.
关键字:
README 文档
README
This package is a tiny wrapper for the onlinecity/php-smpp library. It provides a basic SMPP interface and implementation for the Laravel framework.
Installation
You can install Laravel SMPP using Composer command:
$ composer require saeedshoh/laravel-smpp
<?php namespace App\Http\Controllers; class SmsController extends Controller { public function send(SmppServiceInterface $smpp) { // One number $this->smpp->sendOne(112222900, 'Hi, this SMS was send via SMPP protocol'); // Multiple numbers $this->smpp->sendBulk([1234567890, 0987654321], 'Hi!'); } }
laravel-smpp
统计信息
- 总下载量: 229
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2022-04-26