Easy WP SMTP - Version 1.0.2

Version Description

  • fixed a bug where the debug output was being displayed on the front end
Download this release

Release Info

Developer wpecommerce
Plugin Icon 128x128 Easy WP SMTP
Version 1.0.2
Comparing to
See all releases

Code changes from version 1.0.1 to 1.0.2

Files changed (2) hide show
  1. easy_wp_smtp.php +6 -3
  2. readme.txt +4 -1
easy_wp_smtp.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
  /*
3
  Plugin Name: Easy WP SMTP
4
- Version: 1.0.1
5
  Plugin URI: http://wp-ecommerce.net/?p=2197
6
  Author: wpecommerce
7
  Author URI: http://wp-ecommerce.net/
8
  Description: Send email via SMTP from your WordPress Blog
9
  */
10
- define('EASY_WP_SMTP_PLUGIN_VERSION', "1.0.1");
11
  $ewpsOptions = get_option("easy_wp_smtp_options");
12
 
13
  function easy_wp_smtp($phpmailer){
@@ -28,7 +28,10 @@ function easy_wp_smtp($phpmailer){
28
  $phpmailer->Username = $ewpsOptions["username"];
29
  $phpmailer->Password = $ewpsOptions["password"];
30
  }
31
- $phpmailer->SMTPDebug = 2;
 
 
 
32
  }
33
  add_action('phpmailer_init','easy_wp_smtp');
34
 
1
  <?php
2
  /*
3
  Plugin Name: Easy WP SMTP
4
+ Version: 1.0.2
5
  Plugin URI: http://wp-ecommerce.net/?p=2197
6
  Author: wpecommerce
7
  Author URI: http://wp-ecommerce.net/
8
  Description: Send email via SMTP from your WordPress Blog
9
  */
10
+ define('EASY_WP_SMTP_PLUGIN_VERSION', "1.0.2");
11
  $ewpsOptions = get_option("easy_wp_smtp_options");
12
 
13
  function easy_wp_smtp($phpmailer){
28
  $phpmailer->Username = $ewpsOptions["username"];
29
  $phpmailer->Password = $ewpsOptions["password"];
30
  }
31
+ if(is_admin())
32
+ {
33
+ $phpmailer->SMTPDebug = 2;
34
+ }
35
  }
36
  add_action('phpmailer_init','easy_wp_smtp');
37
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wp-ecommerce.net/?p=2197
4
  Tags: mail, wordpress smtp, phpmailer, smtp, wp_mail, email, gmail, outgoing mail, privacy, security, sendmail, ssl, tls, wp-phpmailer, mail smtp, wp smtp
5
  Requires at least: 3.0
6
  Tested up to: 3.5.1
7
- Stable tag: 1.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -72,3 +72,6 @@ For screenshots please visit the [Easy WordPress SMTP](http://wp-ecommerce.net/e
72
 
73
  = 1.0.1 =
74
  * First commit of the plugin
 
 
 
4
  Tags: mail, wordpress smtp, phpmailer, smtp, wp_mail, email, gmail, outgoing mail, privacy, security, sendmail, ssl, tls, wp-phpmailer, mail smtp, wp smtp
5
  Requires at least: 3.0
6
  Tested up to: 3.5.1
7
+ Stable tag: 1.0.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
72
 
73
  = 1.0.1 =
74
  * First commit of the plugin
75
+
76
+ = 1.0.2 =
77
+ * fixed a bug where the debug output was being displayed on the front end