Package Data | |
---|---|
Maintainer Username: | agoalofalife |
Maintainer Contact: | agoalofalife@gmail.com (agoalofalife) |
Package Create Date: | 2017-01-11 |
Package Last Update: | 2023-10-06 |
Home Page: | https://targetsms.ru |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:03:18 |
Package Statistics | |
---|---|
Total Downloads: | 107 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
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
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