Magento2 module for email providers integration.
Following email services are supported:
- Amazon SES
- Gmail
- Mandrill
- Sendmail
- Manual SMTP settings
Run the following commands:
cd <magento_root>
composer require swissup/module-email
bin/magento module:enable Swissup_Email
bin/magento setup:upgrade
bin/magento setup:di:compile
- Navigate to "Marketing → Communications → Email Services"
- Press "Add New" button
- Create service
- Navigate "Stores → Configurations → Advanced → System → Mail Sending Settings"
- Select new service in the "Default Transport Email Service" drop-down
- Save
If Type
selects Gmail
. Use an App Password: Generate a new App Password for your Gmail account.
Sign in with App Passwords
If the Type
field is set to Gmail OAuth 2.0
, please follow the Google instructions to create the required credentials. In your credentials, you need to add Authorized redirect URIs
with at least one URI, such as https://localhost/swissup_oauth2client/google/getToken/
(replace localhost
with your Magento store URL).
In the OAuth consent screen
, you need to enable the Gmail API
scope. . Also, add your Gmail email address as a Test User.
After setting up your credentials, enter the following fields:
Client ID
inUser (key)
Client secret
inPassword (secure key)
In the Email (from)
field, enter your Gmail email address.
- Navigate "Stores → Configurations → Advanced → System → Mail Sending Settings"
- "Logging Enable" set Yes
- Navigate to "Marketing → Communications → Email Logs"
I recently needed to modify the emails that a client project sends out. It was set up to send via SMTP and so the easiest way to do this for me was to add a local MailHog instance and point the application at it.
Manually running via Docker The quickest and easiest way to do this is via Docker.
Manually, we can do:
$ docker run -p 8025:8025 -p 1025:1025 mailhog/mailhog
This will run MailHog with the SMTP port exposed on localhost port 1025 and the web interface on 8025.
Now you can configure the app’s SMTP config and away you go.
Option | Value |
---|---|
Type | Smtp |
Host | 0.0.0.0 or mailhog |
Port | 1025 |
Auth Type | None |
Secure | None |