這個包 laravel-google-chat-alerts 可以快速向 Google Chat 傳送提醒。您可以使用它來通知自己應用程式中發生的任何值得注意的事件。
安裝
composer require guywarner/laravel-google-chat-alerts
php artisan vendor:publish –tag=”google-chat-alerts-config”
config 配置檔案:
return [
/*
* The webhook URLs that we'll use to send a message to Google Chat.
*/
'webhook_urls' => [
'default' => env('GOOGLE_CHAT_ALERT_WEBHOOK'),
],
/*
* This job will send the message to Google Chat. You can extend this
* job to set timeouts, retries, etc...
*/
'job' => GuyWarner\GoogleChatAlerts\Jobs\SendToGoogleChatChannelJob::class,
];
示例
要向 Google Chat 傳送訊息,只需呼叫GoogleChatAlert::message()
並傳遞您想要的任何訊息。
GoogleChatAlert::message("You have a new subscriber to the {$newsletter->name} newsletter!");
原文連結:laravel-news.com/laravel-google-ch...
本作品採用《CC 協議》,轉載必須註明作者和本文連結