krystoy0/yii2-sms-dexatel

通过Dexatel提供程序为Yii2发送短信

安装: 80

依赖: 0

建议者: 0

安全性: 0

星标: 0

分支: 0

类型:yii2-extension

1.0.0 2022-08-22 11:29 UTC

This package is not auto-updated.

Last update: 2024-09-17 19:44:43 UTC


README

Dexatel短信提供程序提供的Yii2封装器。

安装

安装此扩展的首选方式是通过composer

运行以下命令之一

$ composer require kristoy0/yii2-sms-dexatel "^1.0.0"

或添加以下内容到您的composer.json文件的require部分:

"kristoy0/yii2-sms-dexatel": "^1.0.0"

配置

通过应用程序组件

'components' => [
    'sms' => [
        'class' => kristoy0\sms\dexatel\Provider::class,
        'apiKey' => '<your dexatel API key>',
    ],
],

用法

Yii::$app
    ->sms
    ->compose('Text to send', ['attribute' => 'value'])
    ->setTo('123412341234')
    ->setFrom('Sender')
    ->send();