Magento 2 module to catch, log and redirect emails on local and stage enviroments.
Features:
- Catch and log all emails
- Whitelist domains or emails that you do not want to catch (Merchant domain, developer emails)
- Redirect catched emails to a trash-mail instead of logging them
Although the recommended way to catch emails is using a mailCatcher like MailHog, this is not always easy to setup in all environments and configurations:
Facts:
- Not all your developers have same local systems and configurations
- Stage servers might use different mail transfer agents (sendmail, postfix)
- Projects might use the merchant STMP server for sending emails
- Merchants want to test how real emails are sent and not use a catching Web UI
If you have these problems, that's when this module comes in handy. This module catches emails before they reach the transfer agent. No extra tools needed for your projects, simply install and enable it on Magento Admin.
$ composer require "staempfli/magento2-module-mailcatcher":"~1.0"
Magento Admin > Stores > Configuration > Staempfli > Mail Catcher
This module uses a plugin on Magento\Framework\Mail\TransportInterfaceFactory::create()
, watch out that your code or other modules installed do not overrite that method.
See: etc/di.xml
In order to prove that the mail catcher always work, we recommend you to run included integration tests on your CI environment. Add this into your dev/tests/integration/framework/phpunit.xml
:
<directory suffix="Test.php">&magentoDir;/vendor/staempfli/magento2-module-mailcatcher/Test/Integration</directory>
- PHP >= 7.0.*
- Magento >= 2.1.*
Juan Alonso, and all other contributors
Open Software License ("OSL") v. 3.0
(c) 2017, Stämpfli AG