pianqifei / notification
A tool used send notification by email or phone
dev-master
2020-05-29 08:05 UTC
Requires
- php: >=5.5
- guzzlehttp/guzzle: ~6.0
- nesbot/carbon: ~2.0
This package is auto-updated.
Last update: 2025-05-29 01:33:40 UTC
README
#介绍
notification support email or phone
A tool used send notification support email or phone.
安装依赖
$ composer require pianqifei/notification
##发布资源 配置文件 翻译文件(验证码消息默认模板)
php artisan vendor:publish --provider="Pqf\Notification\PqfNotificationServiceProvider"
快捷引用
use Pqf\Notification\Facades\PqfNotification 门面方法 ##具体逻辑 Pqf\Notification\Notification ##
- 发送验证码
PqfNotification::chanel('phone')->sendVerifyCode($account,$code=null,$type=1)
- 验证码有效性验证
PqfNotification::chanel('phone')->checkVerifyCode($account,$code=null,$type=1)
- 发送消息
PqfNotification::chanel('phone')->sendSms($account,$content)