#!/bin/bash

# Replace these variables with your actual token and chat ID
TOKEN="1518012284:AAGqHae1mPKCwxHk2APYa_TMUp0hMaW6BU0"
CHAT_ID="26236173"
MESSAGE="This is a test message from my shell script."

# Telegram API URL
URL="https://api.telegram.org/bot$TOKEN/sendMessage"

# Using curl to send the message
curl -s -X POST $URL -d chat_id=$CHAT_ID -d text="$MESSAGE"
