gabeta/laravel-custom-sms-channels 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

gabeta/laravel-custom-sms-channels

Composer 安装命令:

composer require gabeta/laravel-custom-sms-channels

包简介

Channels SMS notification for providers not supported by laravel by default.

README 文档

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Laravel notification channels package for a few SMS providers. The specificity of this package is that you can combine several SMS sending services (supported by the package) in the same project without adding additional code. Have you always wanted to receive your SMS locally? preview them make consequent adjustments? We also offer you this functionality.

Preview Dashbaord

Installation

You can install the package via composer:

composer require gabeta/laravel-custom-sms-channels

You can publish the config file with:

php artisan vendor:publish --provider="Gabeta\CustomSmsChannels\CustomSmsChannelsServiceProvider" --tag="config"

Setting up your SMS provider

'default' => env('CUSTOM_SMS_CHANNEL', 'sms_log'),

'preview' => [
    'enable' => env('ENABLE_SMS_PREVIEW', true),

    'domain' => null,

    'path' => '/customs-sms-dashboard',
],

'providers' => [

    'sms_log' => [
        'config' => [
            'driver' => 'single',
            'path' => storage_path('logs/custom-sms.log'),
            'level' => 'info',
        ],
    ],

    'infobip' => [
        'send_from' => env('INFOBIP_SEND_FROM'),

        'api_host' => env('INFOBIP_API_HOST'),

        'api_key_prefix' => env('INFOBIP_API_KEY_PREFIX'),

        'api_key' => env('INFOBIP_API_KEY'),
    ]

    ....
]

Usage

Now you can use the channel in your via() method inside the notification:

use Illuminate\Notifications\Notification;

class WelcomeNotification extends Notification
{
    public function via($notifiable)
    {
        return ['customsms'];
    }
    
    public function toCustomSms($notifiable)
    {
        return "Hello Laravel Community from Ivory Coast (Côte D'ivoire)";
    }
}

The customsms channel will automatically use the provider you have defined by default in your configuration file. It should be noted that a channel will be created for each provider supported by the package. See the list of channels supported.

In order to let your Notification know which user(s) phone number you are targeting, add the routeNotificationForCustomSms method to your Notifiable model. The routeNotificationForCustomSms method must return an instance of Gabeta\CustomSmsChannels\PhoneNumber.

use Gabeta\CustomSmsChannels\Facades\PhoneNumber;

public function routeNotificationForCustomSms()
{
    return PhoneNumber::setDialCode($this->dial_code)
                ->setPhone($this->phone);
}

In the example above (the dial code and number are stored in separate fields) we return an instance of Gabeta\CustomSmsChannels\PhoneNumber while setting the dial_code without any prefix (+ or 00) and the phone number. There are providers that use the dial code and number without a prefix to send SMS others use the + or 00 prefix. The system will take care of the formatting according to of each provider. If the number and dial code are stored in the same field you can set with method.

use Gabeta\CustomSmsChannels\Facades\PhoneNumber;

public function routeNotificationForCustomSms()
{
    return PhoneNumber::setRouteNotification($this->full_phone_number);
}

We advise you to provide the telephone number without the prefix. As mentioned above top the system will take care of the prefixing according to the provider.

Preview SMS Localy

To preview your SMS locally use the sms_log driver activate the preview in your config file.

Publish dashboard assets:

php artisan vendor:publish --provider="Gabeta\CustomSmsChannels\CustomSmsChannelsServiceProvider" --tag="public"

Go to: http://YOUR_HOST/customs-sms-dashboard for preview your SMS.

Provider supporter

Providers channel via method route notification method
log ✅ log toLogSms routeNotificationForLogSms
infobip ✅ infobip toInfobip routeNotificationForInfobip
twilio ✅ twilio toTwilio routeNotificationForTwilio

You could use via or route notification method if you want behavior channel-specific. The package tries to find the via method and the route notification method specific to its provider if it does not find it it will call the routeNotificationForCustomSms functions and toCustomSms.

Would you like to combine a notification channel package such as Laravel vonage package with our package ? Yes it is possible. you must first install their package then add their channel with null value in the supported provider in the config file.

Example:

'providers' => [
    'vonage' => null
]

Testing

composer test

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 61
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 8
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 8
  • Watchers: 1
  • Forks: 2
  • 开发语言: Blade

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-06-24

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固