xoeoro/bytehand-bundle

通过 ByteHand 发送短信

安装: 11

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 0

开放问题: 0

类型:symfony-bundle

dev-master 2015-10-09 16:10 UTC

This package is not auto-updated.

Last update: 2024-09-18 07:51:39 UTC


README

composer

composer require xoeoro/bytehand-bundle:dev-master

AppKernel.php

$bundles = array(
   // Other bundles
   new Xoeoro\BytehandBundle\XoeoroBytehandBundle(),
);

config.yml

xoeoro_bytehand:
    id: %xoeoro.bytehand.id%
    key: %xoeoro.bytehand.key%
    from: %xoeoro.bytehand.from%

parameters.yml.dist

parameters:
    xoeoro.bytehand.id: ~
    xoeoro.bytehand.key: ~
    xoeoro.bytehand.from: SMS-INFO

parameters.yml

parameters:
    xoeoro.bytehand.id: YOUR_BYTEHAND_ID
    xoeoro.bytehand.key: YOUR_BYTEHAND_KEY
    xoeoro.bytehand.from: YOUR_BYTEHAND_FROM

用法

$byteHandService = $this->container->get('xoeoro.bytehand');
$smsStatus = $byteHandService->send($number, $message);