Skip to content

Commit f3b56b6

Browse files
committed
version 1.1.1 release
1 parent 9d3ae6b commit f3b56b6

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

app/Hooks/Handlers/AdminMenuHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function enqueueAssets()
7676
}
7777

7878
}, 1);
79-
79+
8080
wp_enqueue_script(
8181
'fluent_mail_admin_app_boot',
8282
fluentMailMix('admin/js/boot.js'),

app/Models/Model.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function getDb()
3333

3434
if (! $wpFluent) {
3535

36-
require_once(FLUENTMAIL_PLUGIN_PATH .' app/Services/wpfluent/autoload.php');
36+
require_once(FLUENTMAIL_PLUGIN_PATH .'app/Services/wpfluent/autoload.php');
3737
global $wpdb;
3838
$connection = new \WpFluent\Connection($wpdb, ['prefix' => $wpdb->prefix]);
3939

app/Services/Mailer/Providers/AmazonSes/Handler.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,13 @@ public function getValidSenders($config)
161161

162162
$validSenders = $ses->listVerifiedEmailAddresses();
163163

164+
$addresses = [];
165+
164166
if($validSenders && isset($validSenders['Addresses'])) {
165-
return $validSenders['Addresses'];
167+
$addresses = $validSenders['Addresses'];
166168
}
167169

168-
return [];
170+
return apply_filters('fluentsmtp_ses_valid_senders', $addresses, $config);
169171
}
170172

171173
public function getConnectionInfo($connection)

boot.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
!defined('WPINC') && die;
44

55
define('FLUENTMAIL', 'fluentmail');
6-
define('FLUENTMAIL_PLUGIN_VERSION', '1.1.0');
6+
define('FLUENTMAIL_PLUGIN_VERSION', '1.1.1');
77
define('FLUENTMAIL_UPLOAD_DIR', '/fluentmail');
88
define('FLUENT_MAIL_DB_PREFIX', 'fsmpt_');
99
define('FLUENTMAIL_PLUGIN_URL', plugin_dir_url(__FILE__));

fluent-smtp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: FluentSMTP
44
Plugin URI: https://fluentsmtp.com
55
Description: The Ultimate SMTP Connection Plugin for WordPress.
6-
Version: 1.1.0
6+
Version: 1.1.1
77
Author: FluentSMTP & WPManageNinja Team
88
Author URI: https://fluentsmtp.com
99
License: GPL2

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: techjewel, wpmanageninja, heera, adreastrian
33
Tags: smtp, amazon ses, fluent smtp, wordpress smtp, sendgrid smtp, mailgun smtp, mail, mailer, phpmailer, wp_mail, email, sendinblue, wp smtp
44
Requires at least: 5.5
55
Tested up to: 5.7.1
6-
Stable tag: 1.1.0
6+
Stable tag: 1.1.1
77
Requires PHP: 5.6
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -216,6 +216,9 @@ Please <a href="https://wpmanageninja.com/support-tickets/">submit an issue in o
216216

217217
== Changelog ==
218218

219+
= 1.1.1 (Date: April 26, 2021) =
220+
* Database Warnning Issue Fixed
221+
219222
= 1.1.0 (Date: April 25, 2021) =
220223
* Fix Error Handling Issues
221224
* DataBase Query Optimizations

0 commit comments

Comments
 (0)