netflie/laravel-notification-whatsapp
Composer 安装命令:
composer require netflie/laravel-notification-whatsapp
包简介
Laravel notification driver for WhatsApp
README 文档
README
This package makes it easy to send notifications using WhatsApp Cloud API with Laravel.
This package uses the whatsapp-cloud-api library that will allow you to send messages via the WhatsApp Cloud API from any type of project and framework written in PHP.
Contents
Installation
You can install the package via composer:
composer require netflie/laravel-notification-whatsapp
Setting up the WhatsApp Cloud API
Create a new Meta application and get your Whatsapp application token and phone number id following the "Get Started" guide. Place them inside your .env file. To load them, add this to your config/services.php file:
<?php return [ /* |-------------------------------------------------------------------------- | Third Party Services |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such | as Mailgun, Postmark, AWS and more. This file provides the de facto | location for this type of information, allowing packages to have | a conventional file to locate the various service credentials. | */ // Other third-party config... 'whatsapp' => [ 'from-phone-number-id' => env('WHATSAPP_FROM_PHONE_NUMBER_ID'), 'token' => env('WHATSAPP_TOKEN'), ], ];
Usage
The Whatsapp API only allows you to start conversations if you send a template message. This means that you will only be able to send template notifications from this package.
Whatsapp forces you to configure your templates before using them. You can learn how to configure your templates by following Meta's official guide on "How to create templates".
WhatsApp templates sections
A template is divided into 4 sections: header, body, footer and buttons. The header, body and buttons accept variables. The footer doesn't accept variables. You can only send variables from this package for the header and body.
Components
You have available several components that can be used to add context (variables) to your templates. The different components can be created with the component factory:
<?php use NotificationChannels\WhatsApp\Component; Component::currency($amount, $code = 'EUR'); Component::dateTime($dateTime, $format = 'Y-m-d H:i:s'); Component::document($link); Component::image($link); Component::video($link); Component::text($text); Component::urlButton($array_of_urls); Component::quickReplyButton($array_of_payloads); Component::flowButton($flow_token, $array_of_data);
Components supported by Whatsapp template sections:
- Header: image, video, document and text (the text accepts currency, datetime and text variables)
- Body: currency, datetime and text
- Buttons: url and quick reply,
Send a notification from a template
To use this package, you need to create a notification class, like MovieTicketPaid from the example below, in your Laravel application. Make sure to check out Laravel's documentation for this process.
<?php namespace App\Notifications; use Illuminate\Notifications\Notification; use NotificationChannels\WhatsApp\Component; use NotificationChannels\WhatsApp\WhatsAppChannel; use NotificationChannels\WhatsApp\WhatsAppTemplate; class MovieTicketPaid extends Notification { /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [WhatsAppChannel::class]; } public function toWhatsapp($notifiable) { return WhatsAppTemplate::create() ->name('sample_movie_ticket_confirmation') // Name of your configured template ->header(Component::image('https://lumiere-a.akamaihd.net/v1/images/image_c671e2ee.jpeg')) ->body(Component::text('Star Wars')) ->body(Component::dateTime(new \DateTimeImmutable)) ->body(Component::text('Star Wars')) ->body(Component::text('5')) ->buttons(Component::quickReplyButton(['Thanks for your reply!'])) ->buttons(Component::urlButton(['reply/01234'])) // List of url suffixes ->to('34676010101'); } }
Send a text message
You can only send a text message after you've send a template and the user responded.
<?php namespace App\Notifications; use Illuminate\Notifications\Notification; use NotificationChannels\WhatsApp\Component; use NotificationChannels\WhatsApp\WhatsAppChannel; use NotificationChannels\WhatsApp\WhatsAppTextMessage; class MovieTicketPaid extends Notification { /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return [WhatsAppChannel::class]; } public function toWhatsapp($notifiable) { return WhatsAppTextMessage::create() ->message('Hello, this is a test message') ->to('34676010101'); } }
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Security
If you discover any security related issues, please email hola@netflie.es 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.
netflie/laravel-notification-whatsapp 适用场景与选型建议
netflie/laravel-notification-whatsapp 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 208.35k 次下载、GitHub Stars 达 184, 最近一次更新时间为 2022 年 12 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「notification」 「laravel」 「whatsapp」 「whatsapp notification」 「whatsapp notifications channel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 netflie/laravel-notification-whatsapp 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 netflie/laravel-notification-whatsapp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 netflie/laravel-notification-whatsapp 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
This package makes it easy to send notifications via AfricasTalking with Laravel
Apple Push Notification & Feedback Provider
Throttle notifications on a per-channel basis
Extensible library for building notifications and sending them via different delivery channels.
WhatsApp Latest CLoud API Wrapper for PHP
Simple javascript toast notifications
统计信息
- 总下载量: 208.35k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 185
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-12-08