Telegram bot that helps to mention all users in a group. Second version of mention-all-the-bot
-
Use hosted or host yourself
-
Add to your group
-
Everyone who wants to receive notifications opts-in using /in
-
Now you can call everyone with /all
Commands:
/start - Display help text
/in - Opt-in to receive mentions
/out - Opt-out of receiving mentions
/all - Mention all opted-in users
/stats - Display bot stats
/cleanup - Manually opt-out left members of the group
$ cat << EOF > compose.yml
services:
bot:
image: ghcr.io/pischule/go-mention-all-bot:master
restart: unless-stopped
volumes:
- ./data:/app/data
environment:
TELEGRAM_TOKEN: "<your-bot-token>"
EOF
$ docker compose up -d