

Simple SMTP settings interface.
Pinny’s Simple SMTP is a ultra lightweight SMTP plugin weighing in at just 4KB. It’s simple to use, highly secure, and includes all the basic features you need to send emails reliably.
Tired of bloated setup wizards, “Connect Account” popups, and endless menus?
Pinny’s Simple SMTP is designed to be invisible. We removed the fluff so you can get back to work.
1. Enter your Host & Port.
2. Enter your Login.
3. Click Save.
That’s it. You are done.
There is no complex UI to learn. No dashboards to manage. It is a true “Set and Forget” solution that just works.
Unlike most SMTP plugins (which are typically 2MB+ in size), Pinny’s Simple SMTP is ultra-lightweight, easy to set up, and never compromises on security. We ensure your sensitive credentials are always protected with automatic encryption—no more storing passwords in plain text.
This plugin is different. It’s smaller than a favicon, works with any mail provider, and takes just seconds to set up.
Features:
wp-config.php and lock the admin UI.Pinny’s Simple SMTP supports configuration directly from wp-config.php, allowing administrators and developers to lock SMTP settings and prevent changes from the WordPress dashboard.
When enabled, the plugin automatically switches the admin interface to read-only mode.
To enable this mode, add the following constants to your wp-config.php file
define('PINNYS_SMTP_FORCE', true);
define('PINNYS_SMTP_ENABLED', true);
define('PINNYS_SMTP_HOST', 'smtp.gmail.com');
define('PINNYS_SMTP_PORT', 587);
define('PINNYS_SMTP_ENCRYPTION', 'tls');
define('PINNYS_SMTP_AUTH', true);
define('PINNYS_SMTP_USERNAME', '[email protected]');
define('PINNYS_SMTP_PASSWORD', 'your_app_password');
define('PINNYS_SMTP_FROM_EMAIL', '[email protected]');
define('PINNYS_SMTP_FROM_NAME', 'Your Website');
Once PINNYS_SMTP_FORCE is enabled:
wp-config.phpNote: If PINNYS_SMTP_FORCE is not defined, the plugin behaves normally and settings can be configured from the WordPress dashboard.
Pinny’s Simple SMTP is built on a strict security philosophy: WordPress is a CMS, not an Email Archive.
Most SMTP plugins log every email sent from your site into your WordPress database. While this seems convenient, it introduces massive security risks, database bloat, and privacy violations.
We feature a Zero-Retention Architecture. We connect, deliver, and vanish. Here is why this is safer for you:
Storing email logs in your database creates a high-value target for hackers.
wp_options or custom tables slows down your site and bloats your backups.If you need to track email delivery, do it where it belongs: At your Email Provider.
Pinny’s Simple SMTP is built on a strict performance philosophy: Do not load code you do not use.
The industry standard is to force users into OAuth (Log in with Google/Microsoft). While this looks fancy, for a WordPress plugin, it is technically inferior to standard SMTP. Here is why we deliberately stripped OAuth out of Pinny’s:
1. The “Universal Adapter” Trap (Bloat)
Most users connect to one provider (e.g., just Gmail). However, to support OAuth, other plugins must bundle massive SDK libraries for 10–15 different services (Google, Microsoft, Amazon, Yahoo, Zoho, etc.).
2. The Complexity Risk (Security)
In security, Complexity is the Enemy. OAuth flows require redirects, token storage, refresh tokens, and constant API updates. Every external library added to a plugin increases the “Attack Surface”—more code means more places for bugs to hide.
3. The Reality of “Shared OAuth Infrastructure”
Many plugins advertise “one-click OAuth login” for Gmail or Microsoft 365. To provide this convenience without requiring users to create their own developer credentials, these plugins typically authenticate through a shared OAuth application (Client ID and Secret) owned by the plugin developer.
This creates several potential risks including:
Pinny’s Simple SMTP avoids these dependencies entirely by using direct SMTP authentication, allowing your site to communicate directly with your mail server without shared OAuth infrastructure.
4. App Passwords: The Superior Choice
We use App Passwords (Standard SMTP Authentication). This is the secure, recommended method for server-side mailing (Gmail/Workspace & Microsoft 365).
Pinny’s Simple SMTP chooses stability over shiny buttons. Enter your Host, Port, and App Password Save. Done.