https://github.com/flancer32/mage2_ext_email_hijack
Hijack all emails being sent by Magento and redirect it to developers
https://github.com/flancer32/mage2_ext_email_hijack
Last synced: 10 months ago
JSON representation
Hijack all emails being sent by Magento and redirect it to developers
- Host: GitHub
- URL: https://github.com/flancer32/mage2_ext_email_hijack
- Owner: flancer32
- License: gpl-3.0
- Created: 2018-05-25T19:18:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-07-22T08:43:22.000Z (almost 5 years ago)
- Last Synced: 2025-07-02T06:07:47.479Z (about 1 year ago)
- Language: PHP
- Size: 43.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mage2_ext_email_hijack
Hijack all emails being sent by Magento and forward its to developers.
This module allows to intercept all emails being sent by Magento 2 and redirect to developers email addresses.
Original addresses are converted into recipient names:
* Customer First::cust1.at.gmail.com Customer Second::cust2.at.mail.com
* Customer First::cust1.at.gmail.com Customer Second::cust2.at.mail.com
## Configuration
Go to `Store / Configuration / Advanced / System`:

## Install
### From console
```bash
$ cd ${DIR_MAGE_ROOT} // go to Magento 2 root folder ('composer.json' file should be placed there)
$ composer require flancer32/mage2_ext_email_hijack
$ bin/magento module:enable Flancer32_EmailHijack
$ bin/magento setup:upgrade
$ bin/magento setup:di:compile
```
### Using 'composer.json'
```json
{
"require": {
"flancer32/mage2_ext_email_hijack": "*"
}
}
```