"Dokuwiki discordnotifier $version"); // format POST data $payload = array("embeds" => array( array("title" => $title, "color" => $color, "description" => $description, "footer" => $footer) ), ); $json = json_encode($payload); print_r($json); // init curl $ch = curl_init($webhook); // submit payload curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($ch, CURLOPT_POSTFIELDS, $json); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_exec($ch); // close curl Curl_close($ch); } $webhook = $conf['webhook']; $version = $conf['notify_version']; send_embeds($webhook, $version);