fonclub / laravel-notification-channel-sms-ru
This package makes it easy to send notifications using [sms.ru](https://sms.ru) (aka SMSRU) with Laravel 5.5+ (fomvasss/laravel-notification-channel-sms-ru fork)
Requires
- php: >=7.2
- illuminate/notifications: ^5.5|^6.0|^7.0|^8.0|^9.0|^10.0
- illuminate/support: ^5.5|^6.0|^7.0|^8.0|^9.0|^10.0
- zelenin/smsru: ^4.1|^5.0
Requires (Dev)
- mockery/mockery: ^1.2
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2024-10-23 10:40:11 UTC
README
Here's the latest documentation on Laravel's Notifications System:
https://laravel.com/docs/master/notifications
This package makes it easy to send notifications using sms.ru (aka SMSRU) with Laravel 5.5+.
Contents
Installation
Install this package with Composer:
composer require fomvasss/laravel-notification-channel-sms-ru
The service provider gets loaded automatically. Or you can do this manually:
// config/app.php 'providers' => [ ... NotificationChannels\SmsRu\SmsRuServiceProvider::class, ],
Setting up the SmsRu service
Add your SmsRu apiID, default sender name (or phone number) to your config/services.php
:
// config/services.php ... 'sms_ru' => [ 'api_id' => env('SMSRU_API_ID'), ], ...
Usage
You can use the channel in your via()
method inside the notification:
use Illuminate\Notifications\Notification; use NotificationChannels\SmsRu\SmsRuMessage; use NotificationChannels\SmsRu\SmsRuChannel; class AccountApproved extends Notification { public function via($notifiable) { return [SmsRuChannel::class]; } public function toSmsru($notifiable) { return (new SmsRuMessage())->content("Hello SMS!!!")->test(true)->translit(false); } }
In your notifiable model, make sure to include a routeNotificationForSmsru()
method, which returns a phone number
or an array of phone numbers.
public function routeNotificationForSmsru() { return $this->phone; }
Available methods
from()
: Sets the sender's name or phone number.
content()
: Set a content of the notification message.
time()
: Example argument = time() + 7*60*60
- Postpone shipping for 7 hours.
translit()
: Text transliteration
test()
: Test SMS sending (free)
from()
: Approved letter sender
parentId()
: You can specify your partner ID if you integrate the code into a foreign system
Changelog
Please see CHANGELOG for more information what has changed recently.
Security
If you discover any security related issues, please email fomvasss@gmail.com instead of using the issue tracker.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.