WordPress Integration
Configure WordPress to send all transactional and site emails via Reloop's SMTP relay.
By default, WordPress sends transactional emails (like password resets, user registrations, and order notifications) using PHP's built-in mail() function. These emails often lack authentication and end up in the spam folder.
Using Reloop SMTP ensures your WordPress emails are fully authenticated with SPF, DKIM, and DMARC, leading to high inbox delivery rates.
Prerequisites
Before starting, make sure you have:
- A verified sending domain in your Reloop Dashboard.
- A Reloop API Key (which acts as your SMTP username and password).
Step 1: Install an SMTP Plugin
To route WordPress emails through Reloop, you need to install an SMTP plugin. We recommend WP Mail SMTP (the most popular free option), but any standard SMTP plugin will work.
- Log in to your WordPress Admin Dashboard.
- Go to Plugins → Add New.
- Search for WP Mail SMTP.
- Click Install Now and then Activate.
Step 2: Configure SMTP Settings
-
In your WordPress dashboard, navigate to WP Mail SMTP → Settings.
-
Under the General tab, configure the following:
- From Email: Enter a verified email address from your Reloop sending domain (e.g.,
info@yourdomain.com). Check the Force From Email box to ensure consistency. - From Name: The sender name you want your recipients to see.
- From Email: Enter a verified email address from your Reloop sending domain (e.g.,
-
Scroll down to the Mailer section and select Other SMTP.

-
Enter the Reloop SMTP credentials under the Other SMTP settings:
| Setting | Value |
|---|---|
| SMTP Host | smtp.reloop.dev |
| Encryption | TLS (or STARTTLS depending on the plugin) |
| SMTP Port | 587 |
| Auto TLS | ON |
| Authentication | ON |
| SMTP Username | Your Reloop API Key (starts with rl_) |
| SMTP Password | Your Reloop API Key (starts with rl_) |
- Click Save Settings.
Step 3: Send a Test Email
Verify that WordPress can successfully connect and send emails through Reloop.
- In the WP Mail SMTP menu, go to the Tools tab (or Email Test).
- In the Send To field, enter your personal email address.
- Click Send Email.
- Check your inbox (and spam folder) for the test message. Once received, check your Reloop Dashboard Logs to see the delivery metrics and headers.
Troubleshooting
Email Bounced with "Domain Verification Required"
Verify that the From Email configured in WP Mail SMTP belongs to a domain you have added and fully verified (with valid MX, TXT, and CNAME records) in the Reloop dashboard. Reloop will block emails sent from unverified domains.
Connection Timeout (Port 587 Blocked)
Some shared hosting providers block outgoing port 587 to prevent spam. If the connection fails or times out:
- Try changing the port to
2525or25withTLS/STARTTLSencryption enabled. - If those are blocked, contact your hosting provider's support team to request that they open outbound connections on port
587forsmtp.reloop.dev.
Was this page helpful?