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
Expand
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/resendAll available binaries are listed in the latest release.
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"| Key | Description | Default |
|---|---|---|
| -c | Path to yaml config file | /data/ReSend/config.yaml |
Here aaa is a group name to send notification to.
curl http://127.0.0.1:8858/aaa?message=Hellocurl -X GET -d "Hello! This is GET request" http://127.0.0.1:8858/aaacurl -X POST -d "message=Hello! This is POST request" http://127.0.0.1:8858/aaaFrom an app that uses Shoutrrr for notifications (like ForAuth or WatchYourLAN):
generic://$RESEND_IP:8858/aaa?disabletls=yesor
generic+http://$RESEND_IP:8858/aaa?disabletls=yesIf 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 resenddocker 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