1
0
Fork 0
golang-github-nicholas-fedo.../docs/services/zulip.md
Daniel Baumann c0c4addb85
Adding upstream version 0.8.9.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 10:16:14 +02:00

747 B

Zulip Chat

URL Format

The shoutrrr service URL should look like this: !!! info "" zulip://botmail:botkey@host/?stream=stream&topic=topic

--8<-- "docs/services/zulip/config.md"

!!! note Since botmail is a mail address you need to URL escape the @ in it to %40.

Examples

Stream and topic are both optional and can be given as parameters to the Send method:

  sender, _ := shoutrrr.CreateSender(url)

  params := make(types.Params)
  params["stream"] = "mystream"
  params["topic"] = "This is my topic"

  sender.Send(message, &params)

!!! example "Example service URL" zulip://my-bot%40zulipchat.com:correcthorsebatterystable@example.zulipchat.com?stream=foo&topic=bar