yna/laravel-port-to-sms
Composer 安装命令:
composer require yna/laravel-port-to-sms
包简介
Port2SMS Notifications channel for Laravel 5.3.
README 文档
README
This package makes it easy to send notifications using Port2SMs with Laravel 5.3+.
Installation
You can install the package via composer:
composer require yna/laravel-port-to-sms
Then you must install the service provider:
// config/app.php 'providers' => [ ... Yna\PortToSms\PortToSmsServiceProvider::class, ],
Setting up the PortToSms service
Add your PortToSms account, user, password and default sender name (or phone number) to your config/services.php:
// config/services.php ... 'port2sms' => [ 'account' => env('PORT2SMS_ACCOUNT'), 'user' => env('PORT2SMS_USER'), 'password' => env('PORT2SMS_PASSWORD'), 'sender' => env('PORT2SMS_SENDER') ], ...
Usage
You can use the channel in your via() method inside the notification:
use Illuminate\Notifications\Notification; use Yna\PortToSms\PortToSmsMessage; use Yna\PortToSms\PortToSmsChannel; class AccountApproved extends Notification { public function via($notifiable) { return [PortToSmsChannel::class]; } public function toPortToSms($notifiable) { return PortToSmsMessage::create("Task #{$notifiable->id} is complete!"); } }
In your notifiable model, make sure to include a routeNotificationForPort2sms() method, which return the phone number.
public function routeNotificationForPort2sms() { return $this->phone; }
Available methods
from(): Sets the sender's name or phone number.
content(): Set a content of the notification message.
sendAt(): Set a time for scheduling the notification message.
Security
If you discover any security related issues, please email security@yna.co.il instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 21
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-09-16