Drupal is a registered trademark of Dries Buytaert
Release: Leaflet 10.4.11 Minor update available for module leaflet (10.4.11). Release: Session Inspector 1.0.8 Minor update available for module session_inspector (1.0.8). Release: Migrate QA 2.0.4 Minor update available for module migrate_qa (2.0.4). Release: CKEditor Description List 3.0.0 Major update available for module ckeditor_descriptionlist (3.0.0). Release: FlowDrop 2.4.0 Minor update available for module flowdrop (2.4.0). Release: JWT Token Refresh 1.0.4 Minor update available for module jwt_token_refresh (1.0.4). Release: ConReg 1.0.0-beta1 First beta version released for module conreg (1.0.0-beta1). Release: AI Image Studio 1.0.0-beta8 New beta version released for module ai_image_studio (1.0.0-beta8). Usage Milestone: Statistics Counter Module statistics_counter crossed 1,000 active installs. Module Revived: Decoupled Router 2.0.7 Module decoupled_router updated after 11 months of inactivity (2.0.7).

This module provides integration with Telegram, allowing your Drupal site to send messages to Telegram bots. It offers features like sending webform data directly to Telegram, custom endpoint integration, and queued sending of messages for delayed delivery.

The module is for developers. Add some telegram integration for your site.

New features of 2.0.x branch:

  • Value object instead of a lot of parameters in service function
  • Webform handler to send webform data to telegram
  • Send to custom endpoint
  • Queue as option (delay send)

2.0.x Send to telegram bot example

use Drupal\telegram_api\ValueObject\TelegramMessage;

$message = new TelegramMessage(
  text: 'Hello from Drupal!',
  token: '618218965:AAG...',
  chatId: '12345678',
);

\Drupal::service('telegram_api.service')?->sendToTelegramBot($message);

2.0.x Send to queue example

use Drupal\telegram_api\ValueObject\TelegramMessage;

$message = new TelegramMessage(
  text: 'Hello from Drupal!',
  token: '618218965:AAG...',
  chatId: '12345678',
);

\Drupal::service('telegram_api.service')?->queue($message);

And then drush queue:run telegram_api_queue

1.0.x Send to telegram bot example

$result = \Drupal::service('telegram_api.service')->sendToTelegramBot($text, $token, $chat_id);
if ($result !== TRUE) {
  \Drupal::logger('My module')->error($result);
}

Activity

Tracked releases
4
Tracked since
Mar 2026
Latest release
4 months ago
Releases (12 mo)
4 ▲ from 0
Maintenance
Active

Release Timeline

Releases

Version Type Release date
2.0.2 Stable Mar 29, 2026
2.0.1 Stable Mar 29, 2026
2.0.0 Stable Mar 28, 2026
2.0.x-dev Dev Mar 28, 2026