libs/discord-message

There is no license information available for the latest version (1.0.0) of this package.

Send discord webhook

1.0.0 2023-06-08 17:11 UTC

This package is auto-updated.

Last update: 2025-03-08 21:11:04 UTC


README

send discord webhook

Usage

Send Embed :

<?php

$webhook = new \discordMessage\Webhook(<url>);
$message = $webhook->getMessage();
$embed = $message->getEmbed();
/**
 * You can set the embed title, description, color, footer, image, thumbnail, author, fields 
 */
$message->addEmbed($embed);
$webhook->send($message);

Send Simple :

<?php

$webhook = new \discordMessage\Webhook(<url>);
$message = $webhook->getMessage();
$message->setContent(<content>);
$webhook->send($message);