updated plugin SMTP Mailer version 1.1.26

This commit is contained in:
2026-06-03 21:29:17 +00:00
committed by Gitium
parent e410ed67cf
commit bc89bee944
2 changed files with 178 additions and 30 deletions

View File

@ -2,9 +2,9 @@
Contributors: naa986
Donate link: https://wphowto.net/
Tags: email, mail, smtp, phpmailer
Requires at least: 6.8
Tested up to: 6.8
Stable tag: 1.1.18
Requires at least: 7.0
Tested up to: 7.0
Stable tag: 1.1.26
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@ -14,8 +14,6 @@ Configure a SMTP server to send email from your WordPress site. Configure the wp
[SMTP Mailer](https://wphowto.net/smtp-mailer-plugin-for-wordpress-1482) plugin allows you to configure a mail server which handles all outgoing email from your website. It takes control of the wp_mail function and use SMTP instead.
https://www.youtube.com/watch?v=7O_jgtykcEk&rel=0
=== SMTP Mailer Add-ons ===
* [Reply-To](https://wphowto.net/how-to-add-a-reply-to-address-in-the-smtp-mailer-wordpress-plugin-6997)
@ -29,8 +27,12 @@ https://www.youtube.com/watch?v=7O_jgtykcEk&rel=0
* **SMTP Password**: The password to connect to your SMTP server.
* **Type of Encryption**: The encryption to be used when sending an email (TLS/SSL/No Encryption. TLS is recommended).
* **SMTP Port**: The port to be used when sending an email (587/465/25). If you choose TLS the port should be set to 587. For SSL use port 465 instead.
* **From Email Address**: The email address to be used as the From Address when sending an email.
* **From Name**: The name to be used as the From Name when sending an email.
* **From Email Address**: The email address to be used as the From Email when sending a test email.
* **From Name**: The name to be used as the From Name when sending a test email.
* **Force From Name**: The From name in the settings is set for all outgoing email messages.
* **Force From Email**: The From email in the settings is set for all outgoing email messages.
* **Force From Address**: The From address in the settings is set for all outgoing email messages.
* **Disable SSL Certificate Verification**: As of PHP 5.6 a warning/error is shown if the SSL certificate on the server is not properly configured. This option lets you disable that behaviour.
=== SMTP Mailer Test Email ===
@ -73,6 +75,30 @@ none
== Changelog ==
= 1.1.26 =
* WordPress 7.0 compatibility update.
= 1.1.25 =
* Added security for debug output.
= 1.1.24 =
* WordPress 6.9 compatibility update.
= 1.1.23 =
* Added options to force from name and from email.
= 1.1.22 =
* Added minimum WordPress requirements to main file.
= 1.1.21 =
* Added an option to delete saved options.
= 1.1.20 =
* Restored older settings.
= 1.1.19 =
* Added a menu for easy configuration.
= 1.1.18 =
* WordPress 6.8 compatibility update.