From b56116fe081774e3a1d72e34bd2100901d830d8c Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 13 Jun 2020 11:13:28 -0400 Subject: [PATCH] Updated Notify_discord (markdown) --- Notify_discord.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Notify_discord.md b/Notify_discord.md index b3d5a04..0a549e0 100644 --- a/Notify_discord.md +++ b/Notify_discord.md @@ -39,6 +39,7 @@ Discord can also support a variety of website arguments, the below identifies th | footer | No | Include a message footer (by default is is set to **No**) | image | No | Include an image in-line with the message describing the notification type (by default is is set to **Yes**) | avatar | No | Over-ride the default discord avatar icon and replace it with one identify the notification type (by default is is set to **Yes**) +| avatar_url | No | Over-ride the default discord avatar icon URL. By default this is not set and Apprise chooses the URL dynamically based on the type of message (info, success, warning, or error). | format | No | The default value of this is _text_. But if you plan on managing the format yourself, you can optionally set this to _markdown_. If the mode is set to markdown, apprise will scan for header entries (usually on lines by themselves surrounded by hashtags (#)) and will place these inside embedded objects. This is done to give a nicer presentation. #### Example @@ -48,3 +49,8 @@ Send a discord notification: # Assuming our {WebhookToken} is JHMHI8qBe7bk2ZwO5U711o3dV_js apprise discord:///4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js ``` + +If you want to have your own custom avatar URL you're already hosting from another website, you could set the following: +```bash +apprise discord:///4174216298/JHMHI8qBe7bk2ZwO5U711o3dV_js?avatar_url=https://i.imgur.com/FsEpmwg.jpeg +```