Example main
unknown
csharp
4 years ago
528 B
5
Indexable
#region TelegramNotification string bot_api = "2134545018:AAEWuGAt5R0P3ebQYgYQ8WV_dr_HYBPYgiY"; // api token del nostro bot TelegramNotificationApi telegram = new TelegramNotificationApi(bot_api); string subject = "Captcha"; string message = "Il tuo account è un captcha"; string chatid = "861391442"; //l'utente deve salvarla su hunter telegram.TelegramSendMessage(chatid, subject, message); #endregion TelegramNotification
Editor is loading...