netlabs/sms-gateway-bundle 问题修复 & 功能扩展

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

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

netlabs/sms-gateway-bundle

Composer 安装命令:

composer require netlabs/sms-gateway-bundle

包简介

SMS Gateway for serwersms.pl API

README 文档

README

SMS Gateway for serwersms.pl API

Installation

  • composer.json
"require": {
    "netlabs/sms-gateway-bundle": "1.0.*"
}
  • app/AppKernel.php
new NetLabs\SMSGatewayBundle\NetLabsSMSGatewayBundle()

Configuration

  • app/config/config.yml
net_labs_sms_gateway:
    # serwersms.pl
    api:
        username: testuser
        password: testpassword

Basic Usage

Sending SMS message

$smsService = $this->get('net_labs_sms');

$message = $smsService->compose()
    ->setReceiver('123123123')
    ->setContent('This is a test message.');

$result = $smsService->send($message);

Receiving incoming SMS messages

$smsService = $this->get('net_labs_sms');

$messages = $smsService->receive();

Receiving messages delivery reports

$smsService = $this->get('net_labs_sms');

$reports = $smsService->getReports();

Checking messages limit counters

$smsService = $this->get('net_labs_sms');

$counters = $smsService->getCounters();

HLR - Checking main and current networks for phone number

$smsService = $this->get('net_labs_sms');

$result = $smsService->hlr('123123123');

Advanced Usage

Sending SMS message

$smsService = $this->get('net_labs_sms');

$message = $smsService->compose()
    ->setReceiver('123123123')              // receiver's phone number
    ->setContent('This is a test message.') // message content
    ->setSenderName('Test Name');           // max 11 chars
    ->setIsFlash(false)                     // send as flash message - directly to the screen
    ->setIsWapPush(false)                   // send as WapPush message
    ->setIsUTF8(false)                      // set encoding to utf8, so you can use for example polish characters (ąśćźńęółż)
    ->setIsVCard(false)                     // send as VCard message
    ->setSentAt(new \DateTime('+1 hour'))   // set date for delayed delivery
    ->setUsmsid(uniqid());                  // custom unique message ID

$result = $smsService->send($message);

Receiving incoming SMS messages

$smsService = $this->get('net_labs_sms');

$messages = $smsService->receive(
    $setAsRead, // sets message as read after receiving, so it won't be received next time
    $number,    // phone number
    $startDate, // date range
    $endDate,   // date range
    $type,      // message type
    $ndi,       // NDI
    $getSmsId   // gets messages with custom message ID
);

Receiving messages delivery reports

$smsService = $this->get('net_labs_sms');

$reports = $smsService->getReports(
    $number,    // phone number
    $startDate, // date range
    $endDate,   // date range
    $smsId,     // smsId from serwersms.pl
    $usmsid     // custom message ID
);

统计信息

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

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-04-01

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固