Sign inSign up

aceberg/resend

By aceberg

Updated 3 months ago

Turns HTTP requests into notifications to Discord, Telegram, Gotify, Ntfy, Email, SMS and more

Image
Monitoring & observability
0

3.0K

aceberg/resend repository overview

Main-Docker Binary-release Docker Image Size (latest semver)

ReSend


A notification bridge that listens for HTTP requests (GET or POST) and forwards messages to one or more Shoutrrr notification endpoints (Discord, Telegram, Gotify, Ntfy, Email, SMS and others).

Tip

Webhook/App → ReSend → Discord, Telegram, Gotify, Email, SMS

Screenshot

Expand

Screenshot_1

Install (Docker, Binary)

Expand
Docker

Put config.yaml in your $DOCKERDATAPATH.

docker run --name resend \
	-p 8858:8858 \
    -e "TZ=$YOURTIMEZONE" \
	-v $DOCKERDATAPATH:/data/ReSend \
    aceberg/resend
# or use ghcr.io/aceberg/resend
Binary

All available binaries are listed in the latest release.

Config

ReSend uses Shoutrrr to send notifications, so please refer to its documentation for correct urls

config:
  host: 0.0.0.0
  port: "8858"

groups:
- name: aaa
  urls:
  - "gotify://REDACTED?DisableTLS=Yes&title=ReSend"
  - "telegram://REDACTED@telegram/?channels=REDACTED&preview=false&parseMode=html"

- name: bbb
  urls:
  - "matrix://REDACTED"
  - "smtp://REDACTED"
  - "signal://REDACTED"

Options

KeyDescriptionDefault
-cPath to yaml config file/data/ReSend/config.yaml

Usage examples

Here aaa is a group name to send notification to.

curl http://127.0.0.1:8858/aaa?message=Hello
curl -X GET -d "Hello! This is GET request" http://127.0.0.1:8858/aaa
curl -X POST -d "message=Hello! This is POST request" http://127.0.0.1:8858/aaa

From an app that uses Shoutrrr for notifications (like ForAuth or WatchYourLAN):

generic://$RESEND_IP:8858/aaa?disabletls=yes

or

generic+http://$RESEND_IP:8858/aaa?disabletls=yes
With Proxy

If some services (like Telegram) are blocked in your network, ReSend can send notifications through a proxy server:

HTTPS_PROXY=socks5://127.0.0.1:1080 resend
docker run --name resend \
	-p 8858:8858 \
    -e "TZ=$YOURTIMEZONE" \
    -e HTTP_PROXY=socks5://$PROXY_IP:1080 \
    -e HTTPS_PROXY=socks5://$PROXY_IP:1080 \
	-v $DOCKERDATAPATH:/data/ReSend \
    aceberg/resend

Thanks

Tag summary

Content type

Image

Digest

sha256:f8a4f8006

Size

7.9 MB

Last updated

3 months ago

docker pull aceberg/resend