PHP
3
Вклад в тег
$post_data = array (
"entry.2053498632" => $_POST['name_project']
);
$botToken="Токен бота";
$website="https://api.telegram.org/bot".$botToken;
$chatId=000000000; //свой ID в телеграм
$params=[
'chat_id'=> $chatId,
'text'=> "Имя = {$posted_data["your-name"]} // Данные с формы
Email = {$posted_data["your-email"]}
Сообщение = {$posted_data["message"]}"
];
$ch = curl_init($website . '/sendMessage');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, ($params));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);