PHPackages                             mipotech/yii2-pulseem - 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. mipotech/yii2-pulseem

ActiveYii2-extension

mipotech/yii2-pulseem
=====================

A collection of wrapper functions for using the Pulseem API via Yii2

1.0(8y ago)256MITPHPPHP &gt;=5.4.0

Since Jul 11Pushed 6y ago1 watchersCompare

[ Source](https://github.com/mipotech/yii2-pulseem)[ Packagist](https://packagist.org/packages/mipotech/yii2-pulseem)[ RSS](/packages/mipotech-yii2-pulseem/feed)WikiDiscussions master Synced 2mo ago

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

Yii2 Pulseem SDK
================

[](#yii2-pulseem-sdk)

This package provides a simple way to use Pulseem for email and SMS sending.

Installation
------------

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

First add this entry to the `repositories` section of your composer.json:

```
"repositories": [{
    ...
},{
    "type": "git",
    "url": "https://github.com/mipotech/yii2-pulseem.git"
},{
    ...
}],

```

then add this line:

```
"mipotech/yii2-pulseem": "dev-master",

```

to the `require` section of your `composer.json` file and perform a composer update.

Configuration
-------------

[](#configuration)

Add the following section to the params file (@app/config/params.php):

```
return [
    ...

    'pulseem' => [
        // Basic config
        'password' => '...',
        'username' => '...',
        //'endpoint' => '...', // Optionally configure a custom endpoint instead of the default

        // For email operations (optional)
        'fromEmail' => '...',
        'fromName' => '...'

        // For SMS operations (optional)
        'senderPhone' => '...',
    ],
    ...
];
```

That's it. The package is set up and ready to go.

Usage
-----

[](#usage)

To create an instance of the SDK:

```
use mipotech\pulseem\PulseemSdk;

$pulseem = new PulseemSdk();
```

### Sending a single email

[](#sending-a-single-email)

Standard:

```
$params = [
    'htmlBody' => 'Body here',
    'subject' => 'Testing',
    'toEmail' => 'test@test.com',
];
$res = $pulseem->sendSingleEmail($params);
```

Using a Yii2 view:

```
$params = [
    'subject' => 'Testing',
    'toEmail' => 'test@test.com',
];
$bodyTemplate = '@app/views/emails/customTeplate';
$bodyParams = [
    'model' => $model,
    'index' => $i,
]
$res = $pulseem->sendSingleEmail($params, $bodyTemplate, $bodyParams);
```

### Sending a group email with unique content for each message

[](#sending-a-group-email-with-unique-content-for-each-message)

This type of group email mandates that an array of `htmlBodies` be passed as part of `$params`.

```
$params = [
    'htmlBodies' => [
        'Body here 1',
        'Body here 2',
    ],
    'subjects' => [
        'Testing 1',
        'Testing 2',
    ],
    'toEmails' => [
        'test1@test.com',
        'test2@test.com',
    ],
    'toNames' => [
        'Test User 1',
        'Test User 2',
    ],
];
$res = $pulseem->sendGroupEmail($params);
```

### Sending a group email with identical content for each messgae

[](#sending-a-group-email-with-identical-content-for-each-messgae)

This type of group emails support the same two options of either explicitly specifying the htmlBody or using a Yii2 view.

```
$params = [
    'htmlBody' => 'Body here',
    'subject' => 'Testing',
    'toEmails' => [
        'test1@test.com',
        'test2@test.com',
    ],
    'toNames' => ['Test 1', 'Test 2'],
];
$res = $pulseem->sendGroupSameEmail($params);
```

### Sending a single SMS

[](#sending-a-single-sms)

```
$res = $pulseem->sendSingleSms('+972541112222', 'Testing', [
    'delayDeliveryMinutes' => 1,    // optional
    'externalRef' => '111222',      // optional
]);
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% 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

3226d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6d1ac05bc3f037d0072843807d7fb019f475c7ebe07faec1353b071e11618cfa?d=identicon)[mipotech](/maintainers/mipotech)

---

Top Contributors

[![mipoteam](https://avatars.githubusercontent.com/u/231016014?v=4)](https://github.com/mipoteam "mipoteam (2 commits)")[![mipotech](https://avatars.githubusercontent.com/u/6897188?v=4)](https://github.com/mipotech "mipotech (1 commits)")

---

Tags

yii2extension

### Embed Badge

![Health badge](/badges/mipotech-yii2-pulseem/health.svg)

```
[![Health](https://phpackages.com/badges/mipotech-yii2-pulseem/health.svg)](https://phpackages.com/packages/mipotech-yii2-pulseem)
```

###  Alternatives

[skeeks/cms

SkeekS CMS — control panel and tools based on php framework Yii2

13825.6k47](/packages/skeeks-cms)[dmstr/yii2-cookie-consent

Yii2 Cookie Consent Widget

1452.6k](/packages/dmstr-yii2-cookie-consent)[richardfan1126/yii2-js-register

Yii2 widget to register JS into view

1357.2k7](/packages/richardfan1126-yii2-js-register)

PHPackages © 2026

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