Update publish.md

This commit is contained in:
aTable 2022-05-04 21:23:17 +10:00 committed by GitHub
parent 8b5d2a8ca0
commit bcbcbf12ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,6 +163,27 @@ a [title](#message-title), and [tag messages](#tags-emojis) 🥳 🎉. Here's an
<figcaption>Urgent notification with tags and title</figcaption>
</figure>
A multiline message works too:
=== "Bash"
```
#!/bin/bash
curl \
-X PUT \
-H "Title: Unauthorized access detected" \
-H "Priority: urgent" \
-H "Tags: warning,skull" \
-d "Remote access detected to phils-laptop detected.
Act right away.
Or don't" \
ntfy.sh/phil_alerts
```
<figure markdown>
![priority notification](static/img/multiline-notification.png){ width=500 }
<figcaption>Urgent multiline notification with tags and title</figcaption>
</figure>
## Message title
The notification title is typically set to the topic short URL (e.g. `ntfy.sh/mytopic`). To override the title,
you can set the `X-Title` header (or any of its aliases: `Title`, `ti`, or `t`).