PHPackages                             patrick-blom/multi-ordermail-receiver - 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. [Admin Panels](/categories/admin)
4. /
5. patrick-blom/multi-ordermail-receiver

ActiveOxideshop-module[Admin Panels](/categories/admin)

patrick-blom/multi-ordermail-receiver
=====================================

This is a module for the OXID eShop which extends the amount of admin order mail receivers.

1.1.0(5y ago)015GPL-3.0-onlyPHPPHP &gt;=7.1

Since Apr 10Pushed 5y ago1 watchersCompare

[ Source](https://github.com/patrick-blom/multi-ordermail-receiver)[ Packagist](https://packagist.org/packages/patrick-blom/multi-ordermail-receiver)[ Docs](https://www.patrick-blom.de/)[ RSS](/packages/patrick-blom-multi-ordermail-receiver/feed)WikiDiscussions master Synced 2d ago

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

[![PHP Version](https://camo.githubusercontent.com/28011128305139cbab8a735a8383cc6720fc8b4fb61069164766d125bb0ea873/68747470733a2f2f666c61742e62616467656e2e6e65742f7061636b61676973742f7068702f7061747269636b2d626c6f6d2f6d756c74692d6f726465726d61696c2d72656365697665722f3f63616368653d333030267363616c653d312e31)](https://github.com/patrick-blom/multi-ordermail-receiver)[![Stable Version](https://camo.githubusercontent.com/9d433d2d9c9a26b2e090dcd9fcdcbcd61823d0542ccd4d837481c8fab8cad8e2/68747470733a2f2f666c61742e62616467656e2e6e65742f7061636b61676973742f762f7061747269636b2d626c6f6d2f6d756c74692d6f726465726d61696c2d72656365697665722f6c61746573742f3f6c6162656c3d6c61746573742663616368653d333030267363616c653d312e31)](https://packagist.org/packages/patrick-blom/multi-ordermail-receiver)[![Package Name](https://camo.githubusercontent.com/33acbb74b0da810504d32cd6d611e2542d8e045fbcde9a2853ac622ab03620d8/68747470733a2f2f666c61742e62616467656e2e6e65742f7061636b61676973742f6e616d652f7061747269636b2d626c6f6d2f6d756c74692d6f726465726d61696c2d72656365697665722f3f6c6162656c3d7061636b61676973742663616368653d333030267363616c653d312e31)](https://packagist.org/packages/patrick-blom/multi-ordermail-receiver)[![License](https://camo.githubusercontent.com/5251970b86abf1f37fdeca02064102d016aa5e603db1d4cd42922fea30821d54/68747470733a2f2f666c61742e62616467656e2e6e65742f7061636b61676973742f6c6963656e73652f7061747269636b2d626c6f6d2f6d756c74692d6f726465726d61696c2d72656365697665722f3f6c6162656c3d6c6963656e73652663616368653d333030267363616c653d312e31)](https://github.com/patrick-blom/multi-ordermail-receiver/blob/master/LICENSE)[![Follow me on twitter](https://camo.githubusercontent.com/5b7e2d292b0ed651de293485cd9638af1b810b733ca259dcb5cebd8ba3cbc405/68747470733a2f2f666c61742e62616467656e2e6e65742f747769747465722f666f6c6c6f772f70626c306d2f3f6c6162656c3d4070626c306d2663616368653d333030267363616c653d312e31)](https://twitter.com/pbl0m)

Multi-Admin-Order-Mail-Receiver module
======================================

[](#multi-admin-order-mail-receiver-module)

This module adds the possibility for multiple admin order mail receivers to OXID eShop.

### About the module

[](#about-the-module)

Many customers have the problem that, the admin order mail address is bind to one single user. If the user is not reachable the order mails are also not reachable and no one can process the incoming orders. So This module adds the possibility to add multiple admin order mail receivers to the backend. The additional receivers will be added as carbon copy entries to the regular admin order mail.

[![Image alt="preview of the module"](module-preview.png)](module-preview.png)

### Compatibility

[](#compatibility)

- The module is OXID eShop 6.2 and higher only
- The module was built and will work on the OXID eShop Community Edition
- The module should work on OXID eShop Professional Edition and OXID eShop Enterprise Edition
- The module was tested on the OXID eShop Community Edition
- The module was **not tested** on OXID eShop Professional Edition and OXID eShop Enterprise Edition

### Requirements

[](#requirements)

- OXID eShop 6.2 Community Edition (or higher)
- PHP 7.1 (or higher)

### Module installation via composer

[](#module-installation-via-composer)

#### Default installation via packagist (recommend)

[](#default-installation-via-packagist-recommend)

- add the module to your shop composer.json
    - `cd `
    - `composer require patrick-blom/multi-ordermail-receiver`

#### Alternative installation via GitHub (manual)

[](#alternative-installation-via-github-manual)

- create a new folder called "thirdparty" with the subfolder "pb" at the shop root level (same level as the composer.json)
    - `cd `
    - `mkdir -p thirdparty/pb`
- clone the repository to the new folder
    - `git clone git@github.com:patrick-blom/multi-ordermail-receiver.git thirdparty/pb/MultiOrderMailReceiver`
- navigate back to the shop root level and add the repository to composer.json
    - `composer config repositories.patrick-blom/multi-ordermail-receiver path thirdparty/pb/MultiOrderMailReceiver`
- add the module to your shop composer.json
    - `composer require patrick-blom/multi-ordermail-receiver`

#### OXID eShop module activation (identical for default &amp;&amp; alternative installation)

[](#oxid-eshop-module-activation-identical-for-default--alternative-installation)

- prepare the module configuration for eShop 6.2
    - `vendor/bin/oe-console oe:module:install-configuration source/modules/pb/MultiOrderMailReceiver/`
    - `vendor/bin/oe-console oe:module:apply-configuration`
- activate the module
    - `vendor/bin/oe-console oe:module:activate multiordermailreceiver`
- regenerate the unified namespace and the views, because the module adds new database fields
    - `vendor/bin/oe-eshop-unified_namespace_generator`
    - `vendor/bin/oe-eshop-db_views_regenerate`

### Usage

[](#usage)

- After the installation and activation you will find a new mail address field called `Additional e-mail addresses for orders` under:
    - `Master Settings -> Core Settings -> Main (right side)`
- The additional mail addresses must be separated by a semicolon (;)
- Only valid mail addresses will be added as carbon copy
- If no address is provided, no carbon copy entry will be set

### Testing

[](#testing)

#### !Attention!

[](#attention)

The testing process should only be done in a development environment or CI pipeline.

#### Preparing

[](#preparing)

- Install the module as described
- Prepare the [OXID Testing Library](https://github.com/OXID-eSales/testing_library) likes described in their repository or use the [oxvm\_eshop](https://github.com/OXID-eSales/oxvm_eshop) / [docker-eshop-sdk](https://github.com/OXID-eSales/docker-eshop-sdk)
- Add `pb/MultiOrderMailReceiver` to the partial module paths in your test\_config.yml (e.g: `partial_module_paths: 'pb/MultiOrderMailReceiver'`)
- Copy the `config.inc.TEST.php.dist` from the vendor module directory to your shop root and rename it to `config.inc.TEST.php`
- Adjust the settings in the `config.inc.TEST.php` to your needs (test database name, error reporting, etc)
- Modify your `config.inc.php` and ensure that the `config.inc.TEST.php` will be loaded during the tests

```
    // bottom of config.inc.php
    if (defined('OXID_PHP_UNIT')) {
        include "config.inc.TEST.php";
    }
```

#### Run tests

[](#run-tests)

- Navigate to the shop root
- Run the test using the following command: `php vendor/bin/runtests /source/modules/pb/MultiOrderMailReceiver/Tests`
- Run the coverage using the following command: `php vendor/bin/runtests-coverage /source/modules/pb/MultiOrderMailReceiver/Tests`

### License

[](#license)

The module is released under GPL-3.0. For a full overview check the [LICENSE](LICENSE) file.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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

Every ~31 days

Total

3

Last Release

2162d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/43344843?v=4)[elBlommo](/maintainers/patrickblom)[@PatrickBlom](https://github.com/PatrickBlom)

---

Top Contributors

[![patrick-blom](https://avatars.githubusercontent.com/u/4736591?v=4)](https://github.com/patrick-blom "patrick-blom (18 commits)")

---

Tags

OXIDmoduleadmineshopemailsordercarbon copy

### Embed Badge

![Health badge](/badges/patrick-blom-multi-ordermail-receiver/health.svg)

```
[![Health](https://phpackages.com/badges/patrick-blom-multi-ordermail-receiver/health.svg)](https://phpackages.com/packages/patrick-blom-multi-ordermail-receiver)
```

###  Alternatives

[luyadev/luya-module-admin

Administration core module for all LUYA admin modules

48179.0k24](/packages/luyadev-luya-module-admin)

PHPackages © 2026

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