mcsneaky / yii2-moceansms
Yii2 Mocean SMS sending component
Installs: 623
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
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: 2025-03-30 06:55:25 UTC
README
Mocean SMS sending for Yii2
Based on mikk150/yii2-messentesms
Usage
To use this extension, simply add the following code in your application configuration:
return [ //.... 'components' => [ 'sms' => [ 'class' => 'mcsneaky\moceansms\Provider', 'username' => 'myUsername', 'password' => 'myPassword', ], ], ];
You can then send an SMS as follows:
Yii::$app->sms->compose('Your awesome SMS') ->setFrom('Yii2') ->setTo('+15417543010') ->send();