Skip to content

Instantly share code, notes, and snippets.

@mdsdias
mdsdias / sendWebhook.php
Created July 22, 2022 20:06
a webhook with php curl
function postToDiscord($username, $message, $url)
{
$payload = json_encode(array(
'username' => $username,
//'avatar_url' => $this->avatar,
'content' => $message,
//'embeds' => $embeds,
//'tts' => $tts,
));