Skip to content

GateWays YunPian

安正超 edited this page Mar 16, 2017 · 2 revisions

https://www.yunpian.com/api2.0/guide.html

Usage

use Overtrue\EasySms\EasySms;

$config = [
    'default' => 'error-log',
    'gateways' => [
        /*...*/
        'error-log' => [
            'file' => '/tmp/easy-sms.log',
        ],
        /*...*/
        'yun-pian' => [
            'api_key' => 'xxxxxxxxxxxxxx',
        ],
    ],
];

$easySms = new EasySms($config);

$easySms->gateway('error-log')->send(19188888888, 'hello world!');
Clone this wiki locally