Webhook_Router / wastauto.php
Germinal's picture
Update wastauto.php
b5d0dcc
raw
history blame contribute delete
294 Bytes
<?php
$app_name = $_POST[“app”];
$sender = $_POST[“sender”];
$message = $_POST[“message”];
$phone = $_POST["phone"];
$group_name = $_POST["group_name"];
$response = array("reply" => "Hello $sender, we received your message $message.");
echo json_encode($response);
?>