Updated Notify_mastodon (markdown)

master
Chris Caron 2022-11-11 14:58:58 -05:00
parent cf813d9ada
commit 6228cd2600
1 changed files with 10 additions and 1 deletions

@ -102,7 +102,7 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \
"mastodons://T1JJ3T3L2@noc.social"
```
Send a Mastodon DM to @testaccount:
Send a Mastodon DM to `@testaccount`:
```bash
# Assuming our {AccessKey} is T1JJ3T3L2
# Assuming our {Host} is noc.social
@ -110,3 +110,12 @@ Send a Mastodon DM to @testaccount:
apprise -vv -t "Test Message Title" -b "Test Message Body" \
"mastodons://T1JJ3T3L2@noc.social/@testaccount?visibility=direct"
```
Send a Mastodon DM to ourselves using the built in smart-detection:
```bash
# Assuming our {AccessKey} is T1JJ3T3L2
# Assuming our {Host} is noc.social
apprise -vv -t "Test Message Title" -b "Test Message Body" \
"mastodons://T1JJ3T3L2@noc.social/?visibility=direct"
```