
What it is?
Is a library for the use of sending SMS with the service TargetSms
This package is framework-dependent!
It is used in the environment Laravel
How to start using?
You must add the service provider in file config/app.php
agoalofalife\targetsms\Providers\TargetSmsProvider::class
and execute the command in the console
php artisan vendor:publish
Then in the folder ** /config** you will see file targetSMS.php
You will need to add your settings
return [
'login' => '',
'password' => '',
'url' => 'https://sms.targetsms.ru', //most likely
'sender' => '' //how to sign SMS messages
];
Examples you can see in the folder Example