Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Tymeslot/tymeslot/llms.txt

Use this file to discover all available pages before exploring further.

Tymeslot supports two external notification channels — Telegram and Slack — that send alerts when meetings are booked, cancelled, or rescheduled. Both integrations are disabled by default and must be enabled by the instance administrator using environment variables. Once enabled at the instance level, each user connects their own credentials through their personal dashboard. This page covers how to enable each integration and what environment variables to set.

Enabling Telegram

Set TELEGRAM_ENABLED=true in your environment to make the Telegram integration available to all users on the instance:
TELEGRAM_ENABLED=true
When this flag is set, a Telegram section appears in each user’s dashboard notifications settings. Each user connects their own personal Telegram bot token — there are no admin-level Telegram credentials to configure. Users follow Telegram’s standard bot creation flow (via @BotFather) and paste their token into the dashboard.No further server-side configuration is required beyond the single environment variable.

Admin operational alerts

In addition to per-user booking notifications, Tymeslot can send operational alerts to an admin email address when background issues occur — such as webhook delivery failures, integration health problems, or background job errors. Both environment variables must be set for delivery to work:
ADMIN_ALERTS_ENABLED=true
ADMIN_ALERT_EMAIL=admin@yourdomain.com
VariablePurpose
ADMIN_ALERTS_ENABLEDEnables the admin alert system. Defaults to false.
ADMIN_ALERT_EMAILThe recipient address for operational alert emails. Required when alerts are enabled.
Admin alerts use the same email adapter as the rest of the application (EMAIL_ADAPTER). Make sure email delivery is configured before enabling this feature — see the email configuration guide for SMTP and Postmark setup.

Build docs developers (and LLMs) love