diff --git a/wp-content/plugins/smtp-mailer/addons/images/smtp-mailer-email-logger.png b/wp-content/plugins/smtp-mailer/addons/images/smtp-mailer-email-logger.png new file mode 100644 index 00000000..ce032702 Binary files /dev/null and b/wp-content/plugins/smtp-mailer/addons/images/smtp-mailer-email-logger.png differ diff --git a/wp-content/plugins/smtp-mailer/addons/smtp-mailer-addons.php b/wp-content/plugins/smtp-mailer/addons/smtp-mailer-addons.php index 1d228ff1..0b32cb17 100644 --- a/wp-content/plugins/smtp-mailer/addons/smtp-mailer-addons.php +++ b/wp-content/plugins/smtp-mailer/addons/smtp-mailer-addons.php @@ -16,6 +16,14 @@ function smtp_mailer_display_addons() ); array_push($addons_data, $addon_1); + $addon_2 = array( + 'name' => 'Email Logger', + 'thumbnail' => SMTP_MAILER_URL.'/addons/images/smtp-mailer-email-logger.png', + 'description' => 'Log and view all email messages', + 'page_url' => 'https://wphowto.net/smtp-mailer-email-logger-7066', + ); + array_push($addons_data, $addon_2); + //Display the list foreach ($addons_data as $addon) { ?> diff --git a/wp-content/plugins/smtp-mailer/main.php b/wp-content/plugins/smtp-mailer/main.php index 4a403258..562c1bad 100644 --- a/wp-content/plugins/smtp-mailer/main.php +++ b/wp-content/plugins/smtp-mailer/main.php @@ -1,7 +1,7 @@ '; + $smtp_password = trim($_POST['smtp_password']); $smtp_password = wp_unslash($smtp_password); // This removes slash (automatically added by WordPress) from the password when apostrophe is present $smtp_password = base64_encode($smtp_password); } diff --git a/wp-content/plugins/smtp-mailer/readme.txt b/wp-content/plugins/smtp-mailer/readme.txt index 96bfae00..9e83612f 100644 --- a/wp-content/plugins/smtp-mailer/readme.txt +++ b/wp-content/plugins/smtp-mailer/readme.txt @@ -4,7 +4,7 @@ Donate link: https://wphowto.net/ Tags: email, mail, smtp, phpmailer Requires at least: 6.5 Tested up to: 6.5 -Stable tag: 1.1.13 +Stable tag: 1.1.15 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -19,6 +19,7 @@ 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) +* [Email Logger](https://wphowto.net/smtp-mailer-email-logger-7066) === SMTP Mailer Settings === @@ -72,6 +73,12 @@ none == Changelog == += 1.1.15 = +* Updated the code for sanitizing password. + += 1.1.14 = +* Added support for the email logger add-on. + = 1.1.13 = * WordPress 6.5 compatibility update.