WP Mail SMTP by WPForms - Version 3.5.2

Version Description

  • 2022-08-17 =
  • Fixed: The check if wp_mail function is overwritten on Windows servers.
Download this release

Release Info

Developer capuderg
Plugin Icon 128x128 WP Mail SMTP by WPForms
Version 3.5.2
Comparing to
See all releases

Code changes from version 3.5.1 to 3.5.2

readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wpforms, jaredatch, smub, slaFFik
3
  Tags: smtp, wp mail smtp, wordpress smtp, gmail smtp, sendgrid smtp, mailgun smtp, mail, mailer, phpmailer, wp_mail, email, mailgun, sengrid, gmail, sendinblue, wp smtp
4
  Requires at least: 5.2
5
  Tested up to: 6.0
6
- Stable tag: 3.5.1
7
  Requires PHP: 5.6.20
8
 
9
  Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, SendGrid, Mailgun, Zoho, SES, and more. Rated #1 WordPress SMTP Email plugin.
@@ -66,7 +66,7 @@ Instead of having users use different SMTP plugins and workflows for different S
66
  SendLayer is our #1 recommended transactional email service.
67
 
68
  Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking, email logs, and email list management.
69
- SendLayer is the best choice if you want a mailer that's reliable, fast, and easy to set up. You can send up to 500 emails for free when you sign up for a trial.
70
 
71
  Read our <a href="https://wpmailsmtp.com/docs/how-to-set-up-the-sendlayer-mailer-in-wp-mail-smtp/?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin&utm_content=readme" rel="friend">SendLayer documentation</a> for more details.
72
 
@@ -333,6 +333,9 @@ By all means please contact us to discuss features or options you'd like to see
333
 
334
  == Changelog ==
335
 
 
 
 
336
  = 3.5.1 - 2022-07-14 =
337
  - Changed: Removed MailPoet from the list of conflicting plugins.
338
  - Fixed: PHP warning for undefined variable when using the Default (none) mailer.
3
  Tags: smtp, wp mail smtp, wordpress smtp, gmail smtp, sendgrid smtp, mailgun smtp, mail, mailer, phpmailer, wp_mail, email, mailgun, sengrid, gmail, sendinblue, wp smtp
4
  Requires at least: 5.2
5
  Tested up to: 6.0
6
+ Stable tag: 3.5.2
7
  Requires PHP: 5.6.20
8
 
9
  Make email delivery easy for WordPress. Connect with SMTP, Gmail, Outlook, SendGrid, Mailgun, Zoho, SES, and more. Rated #1 WordPress SMTP Email plugin.
66
  SendLayer is our #1 recommended transactional email service.
67
 
68
  Its affordable pricing and simple setup make it the perfect choice for sending emails from WordPress. It also has open and click tracking, email logs, and email list management.
69
+ SendLayer is the best choice if you want a mailer that's reliable, fast, and easy to set up. You can send hundreds of emails for free when you sign up for a trial.
70
 
71
  Read our <a href="https://wpmailsmtp.com/docs/how-to-set-up-the-sendlayer-mailer-in-wp-mail-smtp/?utm_source=wprepo&utm_medium=link&utm_campaign=liteplugin&utm_content=readme" rel="friend">SendLayer documentation</a> for more details.
72
 
333
 
334
  == Changelog ==
335
 
336
+ = 3.5.2 - 2022-08-17 =
337
+ - Fixed: The check if `wp_mail` function is overwritten on Windows servers.
338
+
339
  = 3.5.1 - 2022-07-14 =
340
  - Changed: Removed MailPoet from the list of conflicting plugins.
341
  - Fixed: PHP warning for undefined variable when using the Default (none) mailer.
src/Core.php CHANGED
@@ -1227,7 +1227,7 @@ class Core {
1227
 
1228
  $wp_mail_original_filepath = ABSPATH . WPINC . $separator . 'pluggable.php';
1229
 
1230
- if ( $wp_mail_filepath === $wp_mail_original_filepath ) {
1231
  return;
1232
  }
1233
 
1227
 
1228
  $wp_mail_original_filepath = ABSPATH . WPINC . $separator . 'pluggable.php';
1229
 
1230
+ if ( str_replace( '\\', '/', $wp_mail_filepath ) === str_replace( '\\', '/', $wp_mail_original_filepath ) ) {
1231
  return;
1232
  }
1233
 
src/Providers/Sendlayer/Options.php CHANGED
@@ -31,7 +31,7 @@ class Options extends OptionsAbstract {
31
  $description = sprintf(
32
  wp_kses(
33
  /* translators: %1$s - URL to sendlayer.com; %2$s - URL to SendLayer documentation on wpmailsmtp.com. */
34
- __( '<strong><a href="%1$s" target="_blank" rel="noopener noreferrer">SendLayer</a> is our #1 recommended mailer.</strong> Its affordable pricing and simple setup make it the perfect choice for WordPress sites. SendLayer will authenticate your outgoing emails to make sure they always hit customers’ inboxes, and it has detailed documentation to help you authorize your domain.<br><br>You can send up to 500 emails for free when you sign up for a trial.<br><br>To get started, read our <a href="%2$s" target="_blank" rel="noopener noreferrer">SendLayer documentation</a>.', 'wp-mail-smtp' ),
35
  [
36
  'strong' => [],
37
  'br' => [],
31
  $description = sprintf(
32
  wp_kses(
33
  /* translators: %1$s - URL to sendlayer.com; %2$s - URL to SendLayer documentation on wpmailsmtp.com. */
34
+ __( '<strong><a href="%1$s" target="_blank" rel="noopener noreferrer">SendLayer</a> is our #1 recommended mailer.</strong> Its affordable pricing and simple setup make it the perfect choice for WordPress sites. SendLayer will authenticate your outgoing emails to make sure they always hit customers’ inboxes, and it has detailed documentation to help you authorize your domain.<br><br>You can send hundreds of emails for free when you sign up for a trial.<br><br>To get started, read our <a href="%2$s" target="_blank" rel="noopener noreferrer">SendLayer documentation</a>.', 'wp-mail-smtp' ),
35
  [
36
  'strong' => [],
37
  'br' => [],
wp_mail_smtp.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /**
3
  * Plugin Name: WP Mail SMTP
4
- * Version: 3.5.1
5
  * Requires at least: 5.2
6
  * Requires PHP: 5.6.20
7
  * Plugin URI: https://wpmailsmtp.com/
@@ -222,7 +222,7 @@ if ( ! function_exists( 'wp_mail_smtp_insecure_php_version_notice' ) ) {
222
  }
223
 
224
  if ( ! defined( 'WPMS_PLUGIN_VER' ) ) {
225
- define( 'WPMS_PLUGIN_VER', '3.5.1' );
226
  }
227
  if ( ! defined( 'WPMS_PHP_VER' ) ) {
228
  define( 'WPMS_PHP_VER', '5.6.20' );
1
  <?php
2
  /**
3
  * Plugin Name: WP Mail SMTP
4
+ * Version: 3.5.2
5
  * Requires at least: 5.2
6
  * Requires PHP: 5.6.20
7
  * Plugin URI: https://wpmailsmtp.com/
222
  }
223
 
224
  if ( ! defined( 'WPMS_PLUGIN_VER' ) ) {
225
+ define( 'WPMS_PLUGIN_VER', '3.5.2' );
226
  }
227
  if ( ! defined( 'WPMS_PHP_VER' ) ) {
228
  define( 'WPMS_PHP_VER', '5.6.20' );