lawyi/baimifan

Maintainers

Package info

github.com/lawyi/baimifan

pkg:composer/lawyi/baimifan

Statistics

Installs: 18

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2016-04-28 14:42 UTC

This package is auto-updated.

Last update: 2026-04-04 13:03:44 UTC


README

...

bmfsms

  • 支持 baichuan 发送短信
$code   = rand(1000, 9999);
$time   = 5;
$name   = ''; // 尾巴
$mobile = '18267xxxxxx';

$config = [
    'appkey'       => '',
    'secret'       => '',
    'template_id'  => '57', // 模版ID
    'signature_id' => '293', // 签名ID
    'context'      => [  // 模版变量
        'code' => $code,
        'time' => $time,
        'name' => $name,
    ]
];

$res = \Baimifan\Sms::baichuan($config)->to($mobile)->send();