WP Mail SMTP by WPForms - Version 0.9.6

Version Description

  • Minor security fix, sanitize test email address.
Download this release

Release Info

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

Code changes from version 0.9.5 to 0.9.6

Files changed (2) hide show
  1. readme.txt +8 -2
  2. wp_mail_smtp.php +1 -1
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: chmac
3
  Donate link: http://www.callum-macdonald.com/code/donate/
4
  Tags: mail, smtp, wp_mail, mailer, phpmailer
5
  Requires at least: 2.7
6
- Tested up to: 4.0
7
- Stable tag: 0.9.5
8
 
9
  Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
10
 
@@ -62,6 +62,9 @@ By all means please contact me to discuss features or options you'd like to see
62
 
63
  == Changelog ==
64
 
 
 
 
65
  = 0.9.5 =
66
  * Minor security fix, hat tip JD Grimes.
67
 
@@ -149,6 +152,9 @@ By all means please contact me to discuss features or options you'd like to see
149
 
150
  == Upgrade Notice ==
151
 
 
 
 
152
  = 0.9.5 =
153
  Minor security fix, hat tip JD Grimes.
154
 
3
  Donate link: http://www.callum-macdonald.com/code/donate/
4
  Tags: mail, smtp, wp_mail, mailer, phpmailer
5
  Requires at least: 2.7
6
+ Tested up to: 4.4.2
7
+ Stable tag: 0.9.6
8
 
9
  Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
10
 
62
 
63
  == Changelog ==
64
 
65
+ = 0.9.6 =
66
+ * Minor security fix, sanitize test email address.
67
+
68
  = 0.9.5 =
69
  * Minor security fix, hat tip JD Grimes.
70
 
152
 
153
  == Upgrade Notice ==
154
 
155
+ = 0.9.6 =
156
+ Minor security fix, sanitize test email address.
157
+
158
  = 0.9.5 =
159
  Minor security fix, hat tip JD Grimes.
160
 
wp_mail_smtp.php CHANGED
@@ -178,7 +178,7 @@ function wp_mail_smtp_options_page() {
178
  }
179
 
180
  // Send a test mail if necessary
181
- if (isset($_POST['wpms_action']) && $_POST['wpms_action'] == __('Send Test', 'wp_mail_smtp') && isset($_POST['to'])) {
182
 
183
  check_admin_referer('test-email');
184
 
178
  }
179
 
180
  // Send a test mail if necessary
181
+ if (isset($_POST['wpms_action']) && $_POST['wpms_action'] == __('Send Test', 'wp_mail_smtp') && is_email($_POST['to'])) {
182
 
183
  check_admin_referer('test-email');
184