I found script sending SMS

# send_ai_promo.py
import logging
from telegram import Bot
from telegram.error import TelegramError

# Your bot token
TOKEN = “YOUR_TELEGRAM_BOT_TOKEN”
bot = Bot(token=TOKEN)

# Custom message
promo_message = “🚀 Free AI business and tutorial — message me to learn more!”

# Replace with actual user IDs you’ve interacted with recently
recent_users = [123456789, 987654321, 135792468] # Populate dynamically if needed

def blast_message():
for user_id in recent_users:
try:
bot.send_message(chat_id=user_id, text=promo_message) print(f”✅ Sent to {user_id}”)
except TelegramError as e:
print(f”❌ Could not send to {user_id}: {e}”)

if __name__ == “__main__”:
logging.basicConfig(level=logging.INFO)
blast_message()

Leave a comment