[
“header” => “Content-Type: application/json\r\n”,
“method” => “POST”,
“content” => $data,
],
];
$context = stream_context_create($options);
file_get_contents($webhook_url, false, $context);

echo json_encode([“status” => “success”]);
?>

>