Title: Bentostudio Mail
Author: Gunther Schöbinger
Published: <strong>August 21, 2026</strong>
Last modified: August 23, 2026

---

Search plugins

![](https://ps.w.org/bentostudio-mail/assets/banner-772x250.png?rev=3659655)

![](https://ps.w.org/bentostudio-mail/assets/icon-256x256.png?rev=3659655)

# Bentostudio Mail

 By [Gunther Schöbinger](https://profiles.wordpress.org/gunther9966/)

[Download](https://downloads.wordpress.org/plugin/bentostudio-mail.2.0.2.zip)

 * [Details](https://wordpress.org/plugins/bentostudio-mail/#description)
 * [Reviews](https://wordpress.org/plugins/bentostudio-mail/#reviews)
 *  [Installation](https://wordpress.org/plugins/bentostudio-mail/#installation)
 * [Development](https://wordpress.org/plugins/bentostudio-mail/#developers)

 [Support](https://wordpress.org/support/plugin/bentostudio-mail/)

## Description

Bentostudio Mail is a modular WordPress mail management solution built entirely 
on native WordPress APIs – no external dependencies, no SaaS account required.

The plugin deliberately focuses on the core functions of SMTP sending and mail logging.
For SMTP configuration, it provides a plain SMTP interface only, without pulling
in additional third-party service dependencies. The two core areas – SMTP settings
and mail logging – can also be used independently of each other: for example, you
can configure SMTP sending only, without logging any mails, or use the mail log 
without changing anything about the SMTP route.

**SMTP Sending**

 * Simple configuration of the SMTP sending method directly in the WordPress backend.
 * Technically thorough two-step connection diagnostics: a raw socket probe (`fsockopen()`)
   followed by a full PHPMailer handshake with a captured debug transcript.
 * Send a live test email to confirm end-to-end delivery.
 * Detects other active third-party SMTP plugins and notes that, due to hook load
   order, its own settings take precedence for actual sending.

**Mail Log & Statistics**

 * Stores sent emails (similar in principle to Flamingo).
 * Privacy-friendly by design: data is stored exclusively in your own server’s local
   database – no external services or cloud connections involved.
 * Freely configurable retention by entry count and/or age, helping you apply the
   data minimization / storage limitation principle required by data protection 
   laws such as GDPR (EU/UK), CCPA/CPRA (California), LGPD (Brazil), PIPA (South
   Korea), PDPA (Singapore), and DPDPA (India).
 * Dashboard with live SMTP status, delivery statistics, and an activity overview.
 * Logs failed delivery attempts.
 * Identifies the sending source in the statistics (e.g. Contact Form 7, WordPress
   system notifications).

**Role-Based Access Control**

 * Assign access to the statistics and SMTP settings with a single click.
 * Uses WordPress’s existing user roles (Editor, Shop Manager, etc.) – no separate
   permission system required.
 * Four granular capabilities, one per module page.

**Other Technical Features**

 * Clean uninstall: removes the database table and every `wp_options` entry the 
   plugin ever wrote.

## Screenshots

[⌊Overview dashboard with live SMTP status, delivery statistics, and a recent mails
table.⌉⌊Overview dashboard with live SMTP status, delivery statistics, and a recent
mails table.⌉[

Overview dashboard with live SMTP status, delivery statistics, and a recent mails
table.

[⌊Statistics page showing sent mails, success rate, and errors, plus the full mail
log view.⌉⌊Statistics page showing sent mails, success rate, and errors, plus the
full mail log view.⌉[

Statistics page showing sent mails, success rate, and errors, plus the full mail
log view.

[⌊SMTP settings page with connection test and debug view.⌉⌊SMTP settings page with
connection test and debug view.⌉[

SMTP settings page with connection test and debug view.

[⌊Plugin setup - role assignment for statistics and SMTP access.⌉⌊Plugin setup -
role assignment for statistics and SMTP access.⌉[

Plugin setup – role assignment for statistics and SMTP access.

[⌊Plugin setup - statistics settings (enable/disable, delete logs, retention count
and period).⌉⌊Plugin setup - statistics settings (enable/disable, delete logs, retention
count and period).⌉[

Plugin setup – statistics settings (enable/disable, delete logs, retention count
and period).

## Installation

 1. Upload the `bentostudio-mail` folder to `/wp-content/plugins/`.
 2. Activate the plugin through **Plugins > Installed Plugins**.
 3. Navigate to **Bentostudio Mail > SMTP Settings** and enter your SMTP credentials.
 4. Click **Test Connection** to verify server reachability via a socket probe and 
    PHPMailer handshake.
 5. Click **Send Test Email** to confirm end-to-end delivery.

## FAQ

### Does this plugin store SMTP passwords securely?

SMTP credentials are stored in `wp_options` in plain text, the same way all core
WordPress options are stored. Restrict database access and use application-specific
passwords where your provider supports them.

### Which encryption modes are supported?

TLS (STARTTLS on port 587), SSL (implicit TLS on port 465), and none (unencrypted,
not recommended).

### Does the plugin detect other active SMTP plugins?

Yes. Bentostudio Mail detects when other SMTP plugins are active and flags this 
to the user. It does not automatically disable or modify those plugins’ settings–
however, due to hook load order, its own `phpmailer_init` configuration is the one
that ends up controlling actual mail delivery.

### Does this plugin help with compliance with data protection laws like GDPR or CCPA?

All mail logs are stored exclusively in your own server’s local database – no data
is transmitted to external services. The freely configurable retention period and
entry limit help you apply the data minimization principle required by GDPR/DSGVO,
CCPA/CPRA, LGPD, PIPA, PDPA, and DPDPA, among others. Ensuring your privacy policy
and its legal basis are compliant remains your responsibility.

### Can I grant SMTP or statistics access to editors or shop managers?

Yes. In **Plugin Setup > Role Assignment** you can assign any registered WordPress
role to each of the four access capabilities independently.

### What happens to my data when I uninstall the plugin?

Clicking **Delete** in the plugin list runs `uninstall.php`, which drops the `{prefix}
bentostudiomail_mail_log` table and removes all plugin options from `wp_options`.
No data is left behind.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Bentostudio Mail” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Gunther Schöbinger ](https://profiles.wordpress.org/gunther9966/)

[Translate “Bentostudio Mail” into your language.](https://translate.wordpress.org/projects/wp-plugins/bentostudio-mail)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/bentostudio-mail/),
check out the [SVN repository](https://plugins.svn.wordpress.org/bentostudio-mail/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/bentostudio-mail/)
by [RSS](https://plugins.trac.wordpress.org/log/bentostudio-mail/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.0.2

 * Improved formatting in the mail preview.

#### 2.0.1

 * Consolidated update – see previous releases.

#### 1.0.18

 * Initial public release.
 * Modular architecture with four built-in modules: Overview, Statistics, SMTP Settings,
   Plugin Setup.
 * Role-based capability system with per-module granularity.
 * SMTP connection tester with raw socket probe and full PHPMailer debug transcript.
 * Detection of active third-party SMTP plugins.
 * Mail log with configurable entry-count and age-based retention limits.
 * AJAX detail modal with sandboxed email body preview.
 * Clean uninstall script.

## Meta

 *  Version **2.0.2**
 *  Last updated **2 days ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 6.2 or higher **
 *  Tested up to **7.1**
 *  PHP version ** 8.0 or higher **
 * Tags
 * [email](https://wordpress.org/plugins/tags/email/)[email log](https://wordpress.org/plugins/tags/email-log/)
   [GDPR](https://wordpress.org/plugins/tags/gdpr/)[mail log](https://wordpress.org/plugins/tags/mail-log/)
   [smtp](https://wordpress.org/plugins/tags/smtp/)
 *  [Advanced View](https://wordpress.org/plugins/bentostudio-mail/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/bentostudio-mail/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/bentostudio-mail/reviews/)

## Contributors

 *   [ Gunther Schöbinger ](https://profiles.wordpress.org/gunther9966/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/bentostudio-mail/)