mhunesi / yii2-asist
Yii2 Asist BT SMS Service Component
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- ext-dom: *
- ext-soap: *
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2025-02-23 19:40:04 UTC
README
Yii2 Asist BT SMS Service Component
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist mhunesi/yii2-asist "*"
or add
"mhunesi/yii2-asist": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
try{ $asist->smsProxy() ->addReceiver(['905555555555','905377289552']) ->setMessage(['Message1 text','Message2 text']) ->setOriginator('COMPANY') ->sendSms(); }catch (AsistExceptions $e){ $e->getMessage(); }