CL Simplest SMTP
by Carlos Longarela 5 (4 reviews)

CL Simplest SMTP

Send mails throught SMTP server. Simplest option to send mail when hosting or server do not permits send mail or is missconfigured.

CL Simplest SMTP ranks #26,036 among WordPress.org plugins with 20+ active installations, is #1,084 of 3,382 in the Communication category, a 5/5 rating from 4 reviews, and was last updated May 18, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 7.0.6 (Current: 7.1.2)
v1.2.4 Current Version v1.2.4
Updated 4 months ago Last Update on 18 May, 2026
Refreshed 8 hours ago Last Refreshed on
#1,084 of 3,382 in Communication Top 50% by installs Downloads -32.7% this week
View on WordPress.org
Rank
#26,036
No change
Active Installs
20+
-25.9%
KW Avg Position
129.5
No change
Downloads
2.8K
+2 today
Support Resolved
0%
No change
Rating
100%
Review 5 out of 5
5 (4 reviews)

Next Milestone 30

Total Progress 70%
20+ 30+
1,968
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 3 more installs to reach 30+

Rank Changes

25,696 25,792 25,888 25,984 26,080 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
25,681 25,809 25,937 26,064 26,192 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #26,036
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 20 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

5.0
4 reviews
Overall 100%
5
4 (100%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about CL Simplest SMTP

If you configure the plugin with constants in your wp-config.php file (see next FAQ), this plugin does not add any data to your database. This is the fastest option because the mail does not need to check data from your database. If you configure the options from the WordPress admin panel, the plugin will save only one array of options in your database with all the SMTP parameters. The options array saved in your database (wp_options table) is cl_simplest_smtp_options. Configure plugin with constants. Configure plugin with constants is the fastest option and also avoids database queries. We must set these constants in our wp-config.php file: define( 'CL_SIMPLEST_SMTP_HOST', 'your-smtp-host' ); // SMTP server define( 'CL_SIMPLEST_SMTP_AUTH', true ); // enable SMTP authentication define( 'CL_SIMPLEST_SMTP_PORT', 587 ); // set the SMTP port define( 'CL_SIMPLEST_SMTP_USER', 'your-smtp@user' ); // SMTP account username define( 'CL_SIMPLEST_SMTP_PASS', 'your-smtp-password' ); // SMTP account password define( 'CL_SIMPLEST_SMTP_SECURE', 'tls' ); // To use STARTTLS: 'tls'; To use SSL: 'ssl'; define( 'CL_SIMPLEST_SMTP_FROM', 'your-smtp-sender@email' ); // SMTP from email define( 'CL_SIMPLEST_SMTP_NAME', 'Your Sender Name' ); // SMTP from name This option is the optimal for security.
No. This plugin is very lightweight and only adds one CSS file and one JS file if you are in the WordPress SMTP options page /wp-admin/options-general.php?page=cl-simplest-smtp and does not add anything to any other pages or on the frontend. Only adds one database option (first FAQ) with an array of 8 short values and nothing if you configure it with constants in your wp-config.php file (the best option for speed and security).
Yes, of course. You must to define the constant CL_SIMPLEST_SMTP_HIDE_DONATE as truein your wp-config.php file and the button will fly out ;) define( 'CL_SIMPLEST_SMTP_HIDE_DONATE', true ); But you can invite me to that coffee at any time from https://www.paypal.com/donate/?hosted_button_id=V6U6ZLFHNE6N4
Yes, the default mail log file name is cl-simplest-smtp-log.txt and is located in uploads folder. You can't change the location, but you can change the file name if you define the constant CL_SIMPLEST_SMTP_LOG_FILENAME with the file name at your wp-config.php file. Example: define( 'CL_SIMPLEST_SMTP_LOG_FILENAME', 'my-cl-simplest-smtp-log-dec-2025.txt' ); Keep in mind that if the default log file was previously created, it won't be deleted, only the new file will be created and the file that will be deleted on plugin uninstall will be the new defined file.
The plugin development of this plugin is managed in this GitHub repository https://github.com/CarlosLongarela/cl-simplest-smtp You can send us issues, requests or any comments to https://github.com/CarlosLongarela/cl-simplest-smtp/issues or create a pull request to contribute with any new bug fix, functionality or any other code change.

Sign In / Register

You need to sign in or register to use this feature.