Drupal is a registered trademark of Dries Buytaert
Protected Pages 3.0.0 Major update available for module protected_pages (3.0.0). Commerce Core 3.3.8 Minor update available for module commerce (3.3.8). Search API HTML Element Filter 1.0.7 Minor update available for module search_api_html_element_filter (1.0.7). Layout Builder Reorder 2.0.1 Minor update available for module layout_builder_reorder (2.0.1). Ban 1.1.0 Minor update available for module ban (1.1.0). Field Formatter Range 2.0.0 Major update available for module field_formatter_range (2.0.0). Field Formatter Range 8.x-1.8 Minor update available for module field_formatter_range (8.x-1.8). UI Patterns (SDC in Drupal UI) 2.0.18 Minor update available for module ui_patterns (2.0.18). Search API Solr 4.3.11 Module search_api_solr updated after 14 months of inactivity (4.3.11). Provus Mega Menu Module provus_mega_menu crossed 1,000 active installs.

SMS System

43 sites Security covered
View on drupal.org

This module allows you to send SMS messages from your Drupal site, supporting templated messages and logging all sent messages. It also includes features like queuing for high load, a test mode for development, and integration with various SMS services.

This is a service that is used for sending SMS messages.

Features

Can use SMS send via a given template using module token. Templates can be defined as well.

Can log any sent SMS and keep monitoring them. A good possibility of managing it via drupal views, which mean, you can filter/export/paginate etc.

Can use SMS queue list in case of a high load site, so, data will be processed via a cron.

Possibility to use a "Test" mode, so, the customer won't spend any money on sending test SMS. Mostly useful for local development purposes.

Read the documentation for more information.

Dependencies

It has an internal drupal service for this purpose. Here are examples:

$sms_service = \Drupal::service('smssystem.send_sms');

// Send a simple sms to a recipient with a message.
$sms_service->sendSms('+37369123456', 'Hello!');

// Send sms to a recipient with a given template.
// Available templates are here: "/admin/config/system/smssystem/templates/list"
$sms_service->sendSmsByTemplate('order_completed', '+37369123456');

// Send an SMS to the queue. The queue name "sms_send_processing".
// Available queues list here: "/admin/config/system/smssystem/sms-queue-list"
$sms_service->sendSms('+37369123456', 'Hello!', TRUE);
$sms_service->sendSmsByTemplate('order_placed', '+37369123456', TRUE);

Tested service InterMobcom

Can work with:

  • BulkSMS
  • PROCONTEXT
  • EMOTION TRADING

Configuration pages:

  • Admin main config page: /admin/config/system/smssystem
  • Admin API config page: /admin/config/system/smssystem/api
  • SMS Message templates page: /admin/config/system/smssystem/templates/list
  • Reporting page: /admin/config/system/smssystem/reporting
  • SMS Queue list page: /admin/config/system/smssystem/sms-queue-list

Activity

Total releases
4
First release
Apr 2025
Latest release
9 months ago
Releases (12 mo)
2
Maintenance
Slowing

Release Timeline

Releases

Version Type Release date
1.1.0 Stable Sep 19, 2025
1.0.9 Stable Sep 19, 2025
1.0.8 Stable May 9, 2025
1.0.7 Stable Apr 14, 2025