Files
zemailnator/app/NotifyMe.php
2025-11-14 01:51:35 -08:00

41 lines
865 B
PHP

<?php
namespace App;
use Exception;
use Http;
use Log;
trait NotifyMe
{
public function sendTelegramNotification($message)
{
$botToken = config('app.notify_tg_bot_token');
$chatId = config('app.notify_tg_chat_id');
if (! $botToken || ! $chatId) {
Log::error('Telegram bot token or chat ID not configured');
return false;
}
$url = "https://api.telegram.org/bot{$botToken}/sendMessage";
$data = [
'chat_id' => $chatId,
'text' => $message,
'parse_mode' => 'HTML',
];
try {
$response = Http::post($url, $data);
return $response->successful();
} catch (Exception $e) {
Log::error('Failed to send Telegram notification: '.$e->getMessage());
return false;
}
}
}