mehrancodes / laravel-discord-notifier
Send Discord messages through webhook with Discord
Installs: 4 461
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- illuminate/support: ~6|~7|~8
Requires (Dev)
- orchestra/testbench: ~5|~6
- phpunit/phpunit: ~9.0
README
Send Discord public messages through webhook directly to the Discord server channels. This works by sending a post request with some JSON data to a unique URL Discord provides when you create your Webhook. Take a look at contributing.md to see a to do list.
Installation
You can install the package via composer:
$ composer require mehrancodes/laravel-discord-notifier
Next you need to publish the package config to add your Discord Webhook URLs.
$ php artisan vendor:publish --tag=discord-notifier-config
Setting up your Discord Webhook
Discord provides a feature to create Webhooks, but note that it is only available in server channels, not in direct messages. To create a Webhook, click the cog next to the channel in which you wish to set up your Webhook:
Then head to the Webhooks tab, and hit Create Webhook. You'll then be able to specify the name, which is the name that is used when sending messages if none is specifided in the JSON post request. You can also adjust the channel, and add a default image. Again, that image can later be customized from the JSON post request.
Then at the bottom, you'll get the unique Webhook URL. Paste it in your discord-notifier.php config file.
// config/discord-notifier.php 'channels' => [ 'capitan_hook' => [ 'webhook' => 'https://discord.com/api/webhooks/YOUR_CHANNEL_UNIQUE_IDENTIFIER', ], // You can add as many Discord channels as you like to this array... ]
Usage
In your logic where you want to send a message to a server channel, you may use the Discord facade to define the channel name you want to receive the notification message, the content message, and send it.
use MehranCodes\Notifier\Facades\Discord; Discord::body("The Mehran's new online meeting has ended up successfully") ->embeds([ 'title' => 'View Meeting Details On Nova Panel', 'url' => url('nova/resources/meetings/1'), ]) ->send();
You can use the embeds method to pass an array of embeded rich content.
Change log
Please see the changelog for more information on what has changed recently.
Testing
$ composer test
Contributing
Please see contributing.md for details and a todolist.
Security
If you discover any security related issues, please email author email instead of using the issue tracker.
Credits
License
license. Please see the license file for more information.