alexeevdv/yii2-sms-ge-unicard

安装: 0

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

开放问题: 0

类型:yii2-extension

1.0.1 2018-05-16 12:02 UTC

This package is auto-updated.

Last update: 2024-08-29 04:42:10 UTC


README

Build Status codecov PHP 5.6 PHP 7.0 PHP 7.1 PHP 7.2

Geordian UNICARD 短信服务提供商的 Yii2 封装器

安装

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

运行以下命令之一:

$ composer require alexeevdv/yii2-sms-ge-unicard "~1.0.0"

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

"alexeevdv/yii2-sms-ge-unicard": "~1.0.0"

配置

通过应用程序组件

'components' => [
    'sms' => [
        'class' => \alexeevdv\sms\ge\unicard\Provider::class,
        // If you want to ensure only Georgia phone numbers would be sent
        //'destinationChecker' => \alexeevdv\sms\ge\unicard\GeorgiaDestinationChecker::class,
    ],
],

用法

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