PHPackages                             krisciunaskarolis/bulksms - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. krisciunaskarolis/bulksms

ActiveLibrary[HTTP &amp; Networking](/categories/http)

krisciunaskarolis/bulksms
=========================

PHP client for BulkSMS

1.0.0(3y ago)010MITPHP

Since Feb 28Pushed 3y ago1 watchersCompare

[ Source](https://github.com/krisciunaskarolis/bulksms)[ Packagist](https://packagist.org/packages/krisciunaskarolis/bulksms)[ RSS](/packages/krisciunaskarolis-bulksms/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

BulkSMS PHP integration
=======================

[](#bulksms-php-integration)

PHP client for BulkSMS [sms sending API](https://dashboard.bulksms.link/api).

Client allows sending sms messages in batches or one by one.

Getting Started
---------------

[](#getting-started)

### Installation

[](#installation)

```
composer require krisciunaskarolis/bulksms
```

### Authentication

[](#authentication)

You have to create BulkSMS account first. More information [here](https://dashboard.bulksms.link/api). After registration you have to create APIKEY, which will be used for authentication.

### Sending messages

[](#sending-messages)

To send messages:

```
$smsSender = new \Krisciunas\BulkSms\Sender\SmsSender();
$recipientPhoneNumbers = [
    '37066666661',
    '37066666662',
    '37066666663'
];
$messages = [];

foreach ($recipientPhoneNumbers as $phoneNumber) {
    $messages[] = new \Krisciunas\BulkSms\Message\SmsMessage(
        //Sender name (sender ID), sender must be confirmed before sending SMS message
        sender: 'Test',
        //Phone number of recipient
        recipientPhoneNumber: $phoneNumber,
        message: 'This is test message for first recipient!', //Message
        //Should message be opened on receiver's screen
        flash: \Krisciunas\BulkSms\Message\SmsMessageInterface::FLASH_NOT_REQUIRED,
        //Is it test message
        test: \Krisciunas\BulkSms\Message\SmsMessageInterface::TEST_MODE_SUCCESS,
    );
}

$result = $smsSender->send('[API_KEY]', $messages); //replace [API_KEY] with your BulkSMS API key
```

### Getting result

[](#getting-result)

To get statuses of messages sent:

```
$result = $smsSender->send('[API_KEY]', $messages); //replace [API_KEY] with your BulkSMS API key

foreach ($result as $logRecord) {
    $status = $logRecord->getStatusCode();
    $messageId = $logRecord->getMessageId();
    $recipientPhoneNumber = $logRecord->getRecipientPhoneNumber();
    $isAccepted = $logRecord->isAccepted();
}
```

Examples
--------

[](#examples)

You can find working example in `src/examples/sendSmsMessages.php`

Replace `[API_KEY]` with yours and run example:

```
php sendSmsMessages.php

```

Limitations
-----------

[](#limitations)

According to BulkSMS, maximum number of messages allowed in single request is 1000.

Authors
-------

[](#authors)

- [Karolis Kriščiūnas](mailto:karolis.krisciunas@gmail.com)

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1221d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b746f0e22f1e520cbd8fb99871384a96937f52b4d3bb24b084504b47a50907a3?d=identicon)[karoliskrisciunas](/maintainers/karoliskrisciunas)

---

Top Contributors

[![krisciunaskarolis](https://avatars.githubusercontent.com/u/118339642?v=4)](https://github.com/krisciunaskarolis "krisciunaskarolis (1 commits)")

---

Tags

smssms-clientsms-gatewaybulksmssms sending

### Embed Badge

![Health badge](/badges/krisciunaskarolis-bulksms/health.svg)

```
[![Health](https://phpackages.com/badges/krisciunaskarolis-bulksms/health.svg)](https://phpackages.com/packages/krisciunaskarolis-bulksms)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[illuminate/http

The Illuminate Http package.

11937.9M6.9k](/packages/illuminate-http)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[guzzlehttp/guzzle-services

Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.

25711.0M191](/packages/guzzlehttp-guzzle-services)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
