PHPackages                             vis/esputnik\_client\_l5 - 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. vis/esputnik\_client\_l5

ActiveLibrary

vis/esputnik\_client\_l5
========================

eSputnik API library

1.1.2(9y ago)024MITPHP

Since Mar 27Pushed 8y ago1 watchersCompare

[ Source](https://github.com/KHlushchenko/esputnik_client_l5)[ Packagist](https://packagist.org/packages/vis/esputnik_client_l5)[ RSS](/packages/vis-esputnik-client-l5/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (5)Used By (0)

eSputnik API library

Execute

```
    composer require "vis/esputnik_client_l5":"1.*"
```

Add eSputnikClientServiceProvider to ServiceProviders in config/app.php

```
   Vis\eSputnikClient\eSputnikClientServiceProvider::class,
```

Publish config and define your login\\password in it

```
    php artisan vendor:publish --tag=esputnik-client-config --force
```

Usage

```
    use Vis\eSputnikClient\eSputnikClient;
```

Methods example

```
    $client = new eSputnikClient();

    $result  = $client->getVersion();
```

Send identical email to every recipient with prepared template as %TEMPLATE.variable\_name%

```
    $letterTemplate = 'email_send';
    $recipient = ['email@email.com'];
    $params    = ['name' => 'k.glushchenko', 'message' => 'test_letter'];

    $result  = $client->sendPreparedMessage($letterTemplate, $recipient, $params);
```

Send identical sms to every recipient with prepared template Params in template are defined as %TEMPLATE.variable\_name%

```
    $letterTemplate = 'sms_send';
    $recipient = ['+38(000)-000-00-00'];
    $params    = ['name' => 'k.glushchenko', 'message' => 'test_letter'];

    $result  = $client->sendPreparedMessage($letterTemplate, $recipient, $params, false);
```

Send parametrized email for every recipient with prepared template. Params in template are defined as $!data.get('variable\_name')

```
    $letterTemplate = 'email_smartsend';
    $recipient = ['email1@email.com', 'email2@email.com'];
    $params    = [
        ['name' => 'name_for_email1', 'message' => 'message_for_email1'],
        ['name' => 'name_for_email2', 'message' => 'message_for_email2']
    ];

    $result  = $client->sendExtendedPreparedMessage($letterTemplate, $recipient, $params);
```

Send parametrized sms for every recipient with prepared template. Params in template are defined as $!data.get('variable\_name')

```
    $letterTemplate = 'sms_smartsend';
    $recipient = ['+38(000)-000-000-00', '+38(000)-000-00-01'];
    $params    = [
        ['name' => 'name_for_00', 'message' => 'message_for_00'],
        ['name' => 'name_for_01', 'message' => 'message_for_01']
    ];

    $result  = $client->sendExtendedPreparedMessage($letterTemplate, $recipient, $params, false);
```

Check message status by message id

```
    $result = $client->getInstantMessageStatus($id);
```

Send instant email

```
    $from       = '"organization" ';
    $subject    = 'subject';
    $htmlText   = 'test!';
    $emails     = ['email@email.com'];

    $result  = $client->sendEmail($from, $subject, $htmlText,$emails);
```

Check email status by message hash

```
    $result = $client->getInstantEmailStatus($hash);
```

Send instant email

```
     $from   = 'your_sms_sender';
     $text   = 'test';
     $phones = ["+38(000)-000-00-00"];

     $result  = $client->sendSMS($from, $text, $phones);
```

Check sms status by message hash

```
    $result = $client->getInstantSmsStatus($hash);
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity66

Established project with proven stability

 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

Every ~13 days

Total

4

Last Release

3289d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4ccb895209ea7108142712514fcb896c4bd2d73e196343b566d15585a4d66136?d=identicon)[KGluschenko](/maintainers/KGluschenko)

---

Top Contributors

[![KHlushchenko](https://avatars.githubusercontent.com/u/6852568?v=4)](https://github.com/KHlushchenko "KHlushchenko (7 commits)")

### Embed Badge

![Health badge](/badges/vis-esputnik-client-l5/health.svg)

```
[![Health](https://phpackages.com/badges/vis-esputnik-client-l5/health.svg)](https://phpackages.com/packages/vis-esputnik-client-l5)
```

PHPackages © 2026

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