WP Mail Bank: WordPress SMTP Plugin & Email Logs - Version 1.24

Version Description

Download this release

Release Info

Developer contact-banker
Plugin Icon 128x128 WP Mail Bank: WordPress SMTP Plugin & Email Logs
Version 1.24
Comparing to
See all releases

Code changes from version 1.0.23 to 1.24

Files changed (3) hide show
  1. lib/wp-install-script.php +1 -1
  2. readme.txt +6 -2
  3. wp-mail-bank.php +2 -3
lib/wp-install-script.php CHANGED
@@ -51,7 +51,7 @@ if (count($wpdb->get_var("SHOW TABLES LIKE '" . wp_mail_bank() . "'")) == 0)
51
  );
52
  }
53
  $option_auto_update_mail = get_option("mail-bank-automatic-update");
54
- if($option_auto_update_mail == "")
55
  {
56
  update_option("mail-bank-automatic-update", "1");
57
  }
51
  );
52
  }
53
  $option_auto_update_mail = get_option("mail-bank-automatic-update");
54
+ if($option_auto_update_mail)
55
  {
56
  update_option("mail-bank-automatic-update", "1");
57
  }
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: contact-banker, Gallery-Bank
3
  Tags: admin, ajax, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, plugin, Post, posts, privacy, security, sendmail, smtp, ssl, tls, wordpress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail, mailer
4
  Requires at least: 2.7
5
- Tested up to: 4.2.2
6
- Stable tag: 1.0.23
7
 
8
  WP Mail Bank reconfigures the PHP Mailer and make it more enhanced with advanced SMTP settings options.
9
 
@@ -224,6 +224,10 @@ If any problem occurs, please contact us at [support@tech-banker.com](mailto:sup
224
 
225
  = 1.0.23 =
226
 
 
 
 
 
227
  * Few Bugs Fixed
228
 
229
  = 1.0.22 =
2
  Contributors: contact-banker, Gallery-Bank
3
  Tags: admin, ajax, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, plugin, Post, posts, privacy, security, sendmail, smtp, ssl, tls, wordpress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail, mailer
4
  Requires at least: 2.7
5
+ Tested up to: 4.2.3
6
+ Stable tag: 1.24
7
 
8
  WP Mail Bank reconfigures the PHP Mailer and make it more enhanced with advanced SMTP settings options.
9
 
224
 
225
  = 1.0.23 =
226
 
227
+ * Compatibility with 4.2.3
228
+
229
+ = 1.0.23 =
230
+
231
  * Few Bugs Fixed
232
 
233
  = 1.0.22 =
wp-mail-bank.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Wp Mail Bank
4
  Plugin URI: http://tech-banker.com
5
  Description: WP Mail Bank reconfigures the wp_mail() function and make it more enhanced.
6
  Author: Tech Banker
7
- Version: 1.0.23
8
  Author URI: http://tech-banker.com
9
  License: GPLv3 or later
10
  */
@@ -63,7 +63,6 @@ function wp_mail_bank_configure($phpmailer)
63
  (
64
  "SELECT * FROM ".wp_mail_bank()
65
  );
66
- $mail_type = $data->mailer_type;
67
  $phpmailer->Mailer = $data->mailer_type == 0 ? "smtp" : "mail";
68
  $phpmailer->FromName = stripslashes(htmlspecialchars_decode($data->from_name, ENT_QUOTES));
69
  $phpmailer->From = $data->from_email;
@@ -360,7 +359,7 @@ function mail_bank_plugin_update_message($args)
360
 
361
  $is_option_auto_update = get_option("mail-bank-automatic-update");
362
 
363
- if($is_option_auto_update === "" || $is_option_auto_update == "1")
364
  {
365
  if (!wp_next_scheduled("mail_bank_auto_update"))
366
  {
4
  Plugin URI: http://tech-banker.com
5
  Description: WP Mail Bank reconfigures the wp_mail() function and make it more enhanced.
6
  Author: Tech Banker
7
+ Version: 1.24
8
  Author URI: http://tech-banker.com
9
  License: GPLv3 or later
10
  */
63
  (
64
  "SELECT * FROM ".wp_mail_bank()
65
  );
 
66
  $phpmailer->Mailer = $data->mailer_type == 0 ? "smtp" : "mail";
67
  $phpmailer->FromName = stripslashes(htmlspecialchars_decode($data->from_name, ENT_QUOTES));
68
  $phpmailer->From = $data->from_email;
359
 
360
  $is_option_auto_update = get_option("mail-bank-automatic-update");
361
 
362
+ if($is_option_auto_update == "" || $is_option_auto_update == "1")
363
  {
364
  if (!wp_next_scheduled("mail_bank_auto_update"))
365
  {