PHPackages                             strong2much/yii2-bounce - 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. strong2much/yii2-bounce

ArchivedYii2-extension

strong2much/yii2-bounce
=======================

Helper classes for working with email bounces

029PHP

Since Jul 31Pushed 9y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

yii2-bounce
===========

[](#yii2-bounce)

Helper classes for working with email bounces.

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

[](#installation)

Install package by composer

```
{
    "require": {
       "strong2much/yii2-bounce": "dev-master"
    }
}

Or

$ composer require strong2much/yii2-bounce "dev-master"

```

Use the following code in your configuration file.

```
'bounce' => [
    'class' => 'strong2much\bounce\BounceManager'
]
```

For auto recognition of translation, put this component to bootstrap in your config

```
'bootstrap' => ['bounce'],
```

otherwise specify it by yourself in i18n components

```
'i18n' => [
    'translations' => [
        ...
        'bounce*' => [
            'class' => 'yii\i18n\PhpMessageSource',
            'basePath' => '@strong2much/bounce/messages',
        ],
        ...
    ],
],
```

You can use it as follows:

```
//To add bounce report
$data = Yii::$app->bounce->parseMessage($emailMessage);
foreach($data as $bounceData) {
    Yii::$app->bounce->pushReport($bounceData['recipient'], $bounceData);
}

//To check bounce report
if(!Yii::$app->bounce->hasReport($email)) {
    //do some logic
}
```

In order to use full functionality, you will need to apply migrations.

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/38f8c6e0a784e0464031a3c19787d8749d2671e3265e55388fe49a40784bc5fe?d=identicon)[dtatarnikov](/maintainers/dtatarnikov)

---

Top Contributors

[![dtatarnikov](https://avatars.githubusercontent.com/u/4092580?v=4)](https://github.com/dtatarnikov "dtatarnikov (11 commits)")

### Embed Badge

![Health badge](/badges/strong2much-yii2-bounce/health.svg)

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

PHPackages © 2026

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