mcsneaky / yii2-moceansms
Yii2 Mocean SMS 发送组件
dev-master
2017-12-19 15:11 UTC
Requires
- mikk150/yii2-sms: ~1.0.0
- yiisoft/yii2-httpclient: ~2.0.0
Requires (Dev)
- phpunit/phpunit: 4.8.34
This package is not auto-updated.
Last update: 2024-09-29 04:31:26 UTC
README
基于 Yii2 的 Mocean SMS 发送
基于 mikk150/yii2-messentesms
使用方法
要使用此扩展,只需将以下代码添加到您的应用程序配置中
return [ //.... 'components' => [ 'sms' => [ 'class' => 'mcsneaky\moceansms\Provider', 'username' => 'myUsername', 'password' => 'myPassword', ], ], ];
然后您可以按照以下方式发送短信
Yii::$app->sms->compose('Your awesome SMS') ->setFrom('Yii2') ->setTo('+15417543010') ->send();