Example main
Anonymous
csharp
11/14/2021 6:59 PM
704 B
20
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 TelegramNotificationEditor is loading...