Easy WP SMTP - Version 1.4.0

Version Description

  • Added compatibility with WordPress 5.5 (regarding changes to PHPMailer in WordPress Core).
  • Fixed a conflict with the Clicky for WordPress plugin's user interface.
Download this release

Release Info

Developer mra13
Plugin Icon 128x128 Easy WP SMTP
Version 1.4.0
Comparing to
See all releases

Code changes from version 1.3.9.3 to 1.4.0

class-easywpsmtp-admin.php CHANGED
@@ -2,20 +2,30 @@
2
 
3
  class EasyWPSMTP_Admin {
4
 
5
- private $sd_code;
6
-
7
  public function __construct() {
8
- $this->sd_code = md5( uniqid( 'swpsmtp', true ) );
9
- set_transient( 'easy_wp_smtp_sd_code', $this->sd_code, 12 * 60 * 60 );
10
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
11
  add_action( 'admin_menu', array( $this, 'admin_menu' ) );
12
  }
13
 
 
 
 
 
 
 
 
 
 
14
  public function admin_enqueue_scripts( $hook ) {
15
  // Load only on ?page=swpsmtp_settings
16
  if ( 'settings_page_swpsmtp_settings' !== $hook ) {
17
  return;
18
  }
 
 
 
 
 
19
  $core = EasyWPSMTP::get_instance();
20
  $plugin_data = get_file_data( $core->plugin_file, array( 'Version' => 'Version' ), false );
21
  $plugin_version = $plugin_data['Version'];
@@ -23,7 +33,7 @@ class EasyWPSMTP_Admin {
23
  wp_register_script( 'swpsmtp_admin_js', plugins_url( 'js/script.js', __FILE__ ), array(), $plugin_version, true );
24
  $params = array(
25
  'sd_redir_url' => get_admin_url(),
26
- 'sd_code' => $this->sd_code,
27
  'clear_log_nonce' => wp_create_nonce( 'easy-wp-smtp-clear-log' ),
28
  'str' => array(
29
  'clear_log' => __( 'Are you sure want to clear log?', 'easy-wp-smtp' ),
@@ -36,6 +46,13 @@ class EasyWPSMTP_Admin {
36
  );
37
  wp_localize_script( 'swpsmtp_admin_js', 'easywpsmtp', $params );
38
  wp_enqueue_script( 'swpsmtp_admin_js' );
 
 
 
 
 
 
 
39
  }
40
 
41
  public function admin_menu() {
2
 
3
  class EasyWPSMTP_Admin {
4
 
 
 
5
  public function __construct() {
 
 
6
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
7
  add_action( 'admin_menu', array( $this, 'admin_menu' ) );
8
  }
9
 
10
+ public function remove_conflicting_scripts() {
11
+ $html = ob_get_clean();
12
+ if ( defined( 'CLICKY_PLUGIN_DIR_URL' ) ) {
13
+ $expr = '/^(.*)' . preg_quote( CLICKY_PLUGIN_DIR_URL, '/' ) . '(.*)$/m';
14
+ $html = preg_replace( $expr, '', $html );
15
+ }
16
+ echo $html;
17
+ }
18
+
19
  public function admin_enqueue_scripts( $hook ) {
20
  // Load only on ?page=swpsmtp_settings
21
  if ( 'settings_page_swpsmtp_settings' !== $hook ) {
22
  return;
23
  }
24
+
25
+ //generate secret code for self-destruct function
26
+ $sd_code = md5( uniqid( 'swpsmtp', true ) );
27
+ set_transient( 'easy_wp_smtp_sd_code', $sd_code, 12 * 60 * 60 );
28
+
29
  $core = EasyWPSMTP::get_instance();
30
  $plugin_data = get_file_data( $core->plugin_file, array( 'Version' => 'Version' ), false );
31
  $plugin_version = $plugin_data['Version'];
33
  wp_register_script( 'swpsmtp_admin_js', plugins_url( 'js/script.js', __FILE__ ), array(), $plugin_version, true );
34
  $params = array(
35
  'sd_redir_url' => get_admin_url(),
36
+ 'sd_code' => $sd_code,
37
  'clear_log_nonce' => wp_create_nonce( 'easy-wp-smtp-clear-log' ),
38
  'str' => array(
39
  'clear_log' => __( 'Are you sure want to clear log?', 'easy-wp-smtp' ),
46
  );
47
  wp_localize_script( 'swpsmtp_admin_js', 'easywpsmtp', $params );
48
  wp_enqueue_script( 'swpsmtp_admin_js' );
49
+
50
+ // `Clicky by Yoast` plugin's admin-side scripts should be removed from settings page to prevent JS errors
51
+ // https://wordpress.org/support/topic/plugin-causing-conflicts-on-admin-side/
52
+ if ( class_exists( 'Clicky_Admin' ) ) {
53
+ ob_start();
54
+ add_action( 'admin_print_scripts', array( $this, 'remove_conflicting_scripts' ), 10000 );
55
+ }
56
  }
57
 
58
  public function admin_menu() {
easy-wp-smtp.php CHANGED
@@ -1,7 +1,9 @@
1
  <?php
 
 
2
  /*
3
  Plugin Name: Easy WP SMTP
4
- Version: 1.3.9.3
5
  Plugin URI: https://wp-ecommerce.net/easy-wordpress-smtp-send-emails-from-your-wordpress-site-using-a-smtp-server-2197
6
  Author: wpecommerce, alexanderfoxc
7
  Author URI: https://wp-ecommerce.net/
@@ -183,8 +185,16 @@ class EasyWPSMTP {
183
  return false;
184
  }
185
 
186
- require_once ABSPATH . WPINC . '/class-phpmailer.php';
187
- $mail = new PHPMailer( true );
 
 
 
 
 
 
 
 
188
 
189
  try {
190
 
@@ -252,7 +262,9 @@ class EasyWPSMTP {
252
  $mail->Send();
253
  $mail->ClearAddresses();
254
  $mail->ClearAllRecipients();
255
- } catch ( Exception $e ) {
 
 
256
  $ret['error'] = $mail->ErrorInfo;
257
  }
258
 
1
  <?php
2
+ use PHPMailer\PHPMailer\PHPMailer;
3
+ use PHPMailer\PHPMailer\Exception;
4
  /*
5
  Plugin Name: Easy WP SMTP
6
+ Version: 1.4.0
7
  Plugin URI: https://wp-ecommerce.net/easy-wordpress-smtp-send-emails-from-your-wordpress-site-using-a-smtp-server-2197
8
  Author: wpecommerce, alexanderfoxc
9
  Author URI: https://wp-ecommerce.net/
185
  return false;
186
  }
187
 
188
+ global $wp_version;
189
+
190
+ if ( version_compare( $wp_version, '5.4.99' ) > 0 ) {
191
+ require_once ABSPATH . WPINC . '/PHPMailer/PHPMailer.php';
192
+ require_once ABSPATH . WPINC . '/PHPMailer/SMTP.php';
193
+ $mail = new PHPMailer( true );
194
+ } else {
195
+ require_once ABSPATH . WPINC . '/class-phpmailer.php';
196
+ $mail = new \PHPMailer( true );
197
+ }
198
 
199
  try {
200
 
262
  $mail->Send();
263
  $mail->ClearAddresses();
264
  $mail->ClearAllRecipients();
265
+ } catch ( \Exception $e ) {
266
+ $ret['error'] = $mail->ErrorInfo;
267
+ } catch ( \Throwable $e ) {
268
  $ret['error'] = $mail->ErrorInfo;
269
  }
270
 
languages/easy-wp-smtp.pot CHANGED
@@ -1,495 +1,483 @@
1
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgid "Are you sure want to clear log?"
3
  msgstr ""
4
 
5
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:33
6
  msgid "Log cleared."
7
  msgstr ""
8
 
9
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:34
10
  msgid "Error occurred:"
11
  msgstr ""
12
 
13
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:35
14
  msgid "Sending..."
15
  msgstr ""
16
 
17
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:36
18
  msgid "Are you sure you want to delete ALL your settings and deactive plugin?"
19
  msgstr ""
20
 
21
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:37
22
  msgid "All settings have been deleted and plugin is deactivated."
23
  msgstr ""
24
 
25
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:47
26
- msgid "Easy WP SMTP"
27
  msgstr ""
28
 
29
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:102
30
- msgid ""
31
- "PHP OpenSSL extension is not installed on the server. It's required by Easy "
32
- "WP SMTP plugin to operate properly. Please contact your server administrator "
33
- "or hosting provider and ask them to install it."
34
- msgstr ""
35
-
36
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:105
37
- msgid ""
38
- "PHP OpenSSL extension is not installed on the server. It is required for "
39
- "encryption to work properly. Please contact your server administrator or "
40
- "hosting provider and ask them to install it."
41
  msgstr ""
42
 
43
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:112
44
- #, php-format
45
- msgid ""
46
- "Your PHP version is %s, encryption function requires PHP version 5.3.0 or "
47
- "higher."
48
  msgstr ""
49
 
50
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:117
51
  msgid "Easy WP SMTP Settings"
52
  msgstr ""
53
 
54
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:132
55
- #: easy-wp-smtp/easy-wp-smtp.php:387
56
- msgid "Nonce check failed."
57
- msgstr ""
58
-
59
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:142
60
  msgid "Please enter a valid email address in the 'FROM' field."
61
  msgstr ""
62
 
63
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:187
64
  msgid "Please enter a valid port in the 'SMTP Port' field."
65
  msgstr ""
66
 
67
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:196
68
  msgid "Settings saved."
69
  msgstr ""
70
 
71
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:198
72
  msgid "Settings are not saved."
73
  msgstr ""
74
 
75
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:210
76
  msgid "Please enter a valid email address in the recipient email field."
77
  msgstr ""
78
 
79
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:236
80
  msgid "SMTP Settings"
81
  msgstr ""
82
 
83
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:237
84
  msgid "Additional Settings"
85
  msgstr ""
86
 
87
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:238
88
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:442
89
  msgid "Test Email"
90
  msgstr ""
91
 
92
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:250
93
  msgid "SMTP Configuration Settings"
94
  msgstr ""
95
 
96
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:253
97
- msgid ""
98
- "You can request your hosting provider for the SMTP details of your site. Use "
99
- "the SMTP details provided by your hosting provider to configure the "
100
- "following settings."
101
  msgstr ""
102
 
103
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:257
104
  msgid "From Email Address"
105
  msgstr ""
106
 
107
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:260
108
  msgid "This email address will be used in the 'From' field."
109
  msgstr ""
110
 
111
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:264
112
  msgid "From Name"
113
  msgstr ""
114
 
115
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:267
116
  msgid "This text will be used in the 'FROM' field"
117
  msgstr ""
118
 
119
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:269
120
  msgid "Force From Name Replacement"
121
  msgstr ""
122
 
123
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:271
124
- msgid ""
125
- "When enabled, the plugin will set the above From Name for each email. "
126
- "Disable it if you're using contact form plugins, it will prevent the plugin "
127
- "from replacing form submitter's name when contact email is sent."
128
  msgstr ""
129
 
130
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:273
131
- msgid ""
132
- "If email's From Name is empty, the plugin will set the above value "
133
- "regardless."
134
  msgstr ""
135
 
136
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:278
137
  msgid "Reply-To Email Address"
138
  msgstr ""
139
 
140
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:281
141
- msgid ""
142
- "Optional. This email address will be used in the 'Reply-To' field of the "
143
- "email. Leave it blank to use 'From' email as the reply-to value."
144
  msgstr ""
145
 
146
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:285
 
 
 
 
 
 
 
 
147
  msgid "SMTP Host"
148
  msgstr ""
149
 
150
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:288
151
  msgid "Your mail server"
152
  msgstr ""
153
 
154
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:292
155
  msgid "Type of Encryption"
156
  msgstr ""
157
 
158
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:294
159
  msgid "None"
160
  msgstr ""
161
 
162
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:295
163
  msgid "SSL/TLS"
164
  msgstr ""
165
 
166
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:296
167
  msgid "STARTTLS"
168
  msgstr ""
169
 
170
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:297
171
  msgid "For most servers SSL/TLS is the recommended option"
172
  msgstr ""
173
 
174
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:301
175
  msgid "SMTP Port"
176
  msgstr ""
177
 
178
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:304
179
  msgid "The port to your mail server"
180
  msgstr ""
181
 
182
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:308
183
  msgid "SMTP Authentication"
184
  msgstr ""
185
 
186
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:310
187
  msgid "No"
188
  msgstr ""
189
 
190
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:311
191
  msgid "Yes"
192
  msgstr ""
193
 
194
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:312
195
  msgid "This options should always be checked 'Yes'"
196
  msgstr ""
197
 
198
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:316
199
  msgid "SMTP Username"
200
  msgstr ""
201
 
202
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:319
203
  msgid "The username to login to your mail server"
204
  msgstr ""
205
 
206
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:323
207
  msgid "SMTP Password"
208
  msgstr ""
209
 
210
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:326
211
  msgid "The password to login to your mail server"
212
  msgstr ""
213
 
214
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:327
215
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:444
216
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:494
217
  msgctxt "\"Note\" as in \"Note: keep this in mind\""
218
  msgid "Note:"
219
  msgstr ""
220
 
221
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:327
222
- msgid ""
223
- "when you click \"Save Changes\", your actual password is stored in the "
224
- "database and then used to send emails. This field is replaced with a gag "
225
- "(#easywpsmtpgagpass#). This is done to prevent someone with the access to "
226
- "Settings page from seeing your password (using password fields unmasking "
227
- "programs, for example)."
228
  msgstr ""
229
 
230
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:332
231
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:394
232
  msgid "Save Changes"
233
  msgstr ""
234
 
235
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:342
236
  msgid "Additional Settings (Optional)"
237
  msgstr ""
238
 
239
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:346
240
  msgid "Don't Replace \"From\" Field"
241
  msgstr ""
242
 
243
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:349
244
- msgid ""
245
- "Comma separated emails list. Example value: email1@domain.com, email2@domain."
246
- "com"
247
  msgstr ""
248
 
249
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:350
250
- msgid ""
251
- "This option is useful when you are using several email aliases on your SMTP "
252
- "server. If you don't want your aliases to be replaced by the address "
253
- "specified in \"From\" field, enter them in this field."
254
  msgstr ""
255
 
256
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:354
257
  msgid "Enable Domain Check"
258
  msgstr ""
259
 
260
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:357
261
- msgid ""
262
- "This option is usually used by developers only. SMTP settings will be used "
263
- "only if the site is running on following domain(s):"
264
  msgstr ""
265
 
266
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:359
267
  msgid "Coma-separated domains list. Example: domain1.com, domain2.com"
268
  msgstr ""
269
 
270
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:361
271
  msgid "Block all emails"
272
  msgstr ""
273
 
274
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:363
275
- msgid ""
276
- "When enabled, plugin attempts to block ALL emails from being sent out if "
277
- "domain mismtach."
278
  msgstr ""
279
 
280
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:367
281
  msgid "Encrypt Password"
282
  msgstr ""
283
 
284
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:371
285
- msgid ""
286
- "When enabled, your SMTP password is stored in the database using AES-256 "
287
- "encryption."
288
  msgstr ""
289
 
290
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:378
291
  msgid "Allow Insecure SSL Certificates"
292
  msgstr ""
293
 
294
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:381
295
- msgid ""
296
- "Allows insecure and self-signed SSL certificates on SMTP server. It's highly "
297
- "recommended to keep this option disabled."
298
  msgstr ""
299
 
300
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:385
301
  msgid "Enable Debug Log"
302
  msgstr ""
303
 
304
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:388
305
  msgid "Check this box to enable mail debug log"
306
  msgstr ""
307
 
308
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:389
309
- msgid "Clear Log"
310
  msgstr ""
311
 
312
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:389
313
- msgid "View Log"
314
  msgstr ""
315
 
316
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:401
317
  msgid "Danger Zone"
318
  msgstr ""
319
 
320
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:403
321
- msgid ""
322
- "Actions in this section can (and some of them will) erase or mess up your "
323
- "settings. Use it with caution."
324
  msgstr ""
325
 
326
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:406
327
  msgid "Export\\Import Settings"
328
  msgstr ""
329
 
330
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:408
331
  msgid "Export Settings"
332
  msgstr ""
333
 
334
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:409
335
  msgid "Use this to export plugin settings to a file."
336
  msgstr ""
337
 
338
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:411
339
  msgid "Import Settings"
340
  msgstr ""
341
 
342
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:412
343
- msgid ""
344
- "Use this to import plugin settings from a file. Note this would replace all "
345
- "your existing settings, so use with caution."
346
  msgstr ""
347
 
348
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:416
349
  msgid "Delete Settings and Deactivate Plugin"
350
  msgstr ""
351
 
352
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:418
353
  msgid "Self-destruct"
354
  msgstr ""
355
 
356
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:418
357
- msgid ""
358
- "This will remove ALL your settings and deactivate the plugin. Useful when "
359
- "you're uninstalling the plugin and want to completely remove all crucial "
360
- "data stored in the database."
361
  msgstr ""
362
 
363
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:419
364
  msgid "Warning! This can't be undone."
365
  msgstr ""
366
 
367
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:444
368
- msgid ""
369
- "You have unsaved settings. In order to send a test email, you need to go "
370
- "back to previous tab and click \"Save Changes\" button first."
371
  msgstr ""
372
 
373
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:450
374
  msgid "Following error occurred when attempting to send test email:"
375
  msgstr ""
376
 
377
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:453
378
- msgid ""
379
- "Test email was successfully sent. No errors occurred during the process."
380
  msgstr ""
381
 
382
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:464
383
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:472
384
  msgid "Show Debug Log"
385
  msgstr ""
386
 
387
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:474
388
  msgid "Hide Debug Log"
389
  msgstr ""
390
 
391
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:493
392
- msgid ""
393
- "You can use this section to send an email from your server using the above "
394
- "configured SMTP details to see if the email gets delivered."
395
  msgstr ""
396
 
397
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:494
398
- msgid ""
399
- "debug log for this test email will be automatically displayed right after "
400
- "you send it. Test email also ignores \"Enable Domain Check\" option."
401
  msgstr ""
402
 
403
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:499
404
  msgid "To"
405
  msgstr ""
406
 
407
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:502
408
  msgid "Enter the recipient's email address"
409
  msgstr ""
410
 
411
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:506
412
  msgid "Subject"
413
  msgstr ""
414
 
415
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:509
416
  msgid "Enter a subject for your message"
417
  msgstr ""
418
 
419
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:513
420
  msgid "Message"
421
  msgstr ""
422
 
423
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:516
424
  msgid "Write your email message"
425
  msgstr ""
426
 
427
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:521
428
  msgid "Send Test Email"
429
  msgstr ""
430
 
431
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:534
432
  msgid "Documentation"
433
  msgstr ""
434
 
435
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:536
436
- #, php-format
437
- msgctxt ""
438
- "%s is replaced by <a target=\"_blank\" href=\"https://wp-ecommerce.net/easy-"
439
- "wordpress-smtp-send-emails-from-your-wordpress-site-using-a-smtp-"
440
- "server-2197\">Easy WP SMTP</a>"
441
- msgid ""
442
- "Please visit the %s plugin's documentation page to learn how to use this "
443
- "plugin."
444
  msgstr ""
445
 
446
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:540
447
  msgid "Support"
448
  msgstr ""
449
 
450
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:542
451
- #, php-format
452
  msgctxt "%s is replaced by \"Support Forum\" link"
453
  msgid "Having issues or difficulties? You can post your issue on the %s"
454
  msgstr ""
455
 
456
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:542
457
  msgid "Support Forum"
458
  msgstr ""
459
 
460
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:546
461
  msgid "Rate Us"
462
  msgstr ""
463
 
464
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:548
465
- #, php-format
466
  msgctxt "%s is replaced by \"rating\" link"
467
  msgid "Like the plugin? Please give us a %s"
468
  msgstr ""
469
 
470
- #: easy-wp-smtp/easy-wp-smtp-admin-menu.php:548
471
  msgid "rating"
472
  msgstr ""
473
-
474
- #: easy-wp-smtp/easy-wp-smtp.php:317
475
- msgid "Error occurred during settings import"
476
- msgstr ""
477
-
478
- #: easy-wp-smtp/easy-wp-smtp.php:368
479
- #, php-format
480
- msgid ""
481
- "Please configure your SMTP credentials in the <a href=\"%s\">settings menu</"
482
- "a> in order to send email using Easy WP SMTP plugin."
483
- msgstr ""
484
-
485
- #: easy-wp-smtp/easy-wp-smtp.php:378
486
- msgid "Settings have been imported successfully."
487
- msgstr ""
488
-
489
- #: easy-wp-smtp/easy-wp-smtp.php:415 easy-wp-smtp/easy-wp-smtp.php:424
490
- msgid "Settings"
491
- msgstr ""
492
-
493
- #: easy-wp-smtp/easy-wp-smtp.php:592
494
- msgid "Please refresh the page and try again."
495
- msgstr ""
1
+ # Copyright (C) 2020 wpecommerce, alexanderfoxc
2
+ # This file is distributed under the same license as the Easy WP SMTP plugin.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Easy WP SMTP 1.3.9.5\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/easy-wp-smtp\n"
7
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2020-07-20T17:29:18+03:00\n"
13
+ "PO-Revision-Date: 2020-07-20T17:29:18+03:00\n"
14
+ "X-Generator: WP-CLI 2.0.1\n"
15
+ "X-Domain: easy-wp-smtp\n"
16
+
17
+ #. Plugin Name of the plugin
18
+ #: class-easywpsmtp-admin.php:43
19
+ msgid "Easy WP SMTP"
20
+ msgstr ""
21
+
22
+ #. Plugin URI of the plugin
23
+ msgid "https://wp-ecommerce.net/easy-wordpress-smtp-send-emails-from-your-wordpress-site-using-a-smtp-server-2197"
24
+ msgstr ""
25
+
26
+ #. Description of the plugin
27
+ msgid "Send email via SMTP from your WordPress Blog"
28
+ msgstr ""
29
+
30
+ #. Author of the plugin
31
+ msgid "wpecommerce, alexanderfoxc"
32
+ msgstr ""
33
+
34
+ #. Author URI of the plugin
35
+ msgid "https://wp-ecommerce.net/"
36
+ msgstr ""
37
+
38
+ #: easy-wp-smtp.php:336
39
+ msgid "Error occurred during settings import"
40
+ msgstr ""
41
+
42
+ #: easy-wp-smtp.php:388
43
+ msgid "Please configure your SMTP credentials in the <a href=\"%s\">settings menu</a> in order to send email using Easy WP SMTP plugin."
44
+ msgstr ""
45
+
46
+ #: easy-wp-smtp.php:400
47
+ msgid "Settings have been imported successfully."
48
+ msgstr ""
49
+
50
+ #: easy-wp-smtp.php:408
51
+ #: class-easywpsmtp-admin.php:96
52
+ msgid "Nonce check failed."
53
+ msgstr ""
54
+
55
+ #: easy-wp-smtp.php:414
56
+ msgid "Can't clear log - file is not writeable."
57
+ msgstr ""
58
+
59
+ #: easy-wp-smtp.php:434
60
+ #: easy-wp-smtp.php:442
61
+ msgid "Settings"
62
+ msgstr ""
63
+
64
+ #: easy-wp-smtp.php:600
65
+ msgid "Please refresh the page and try again."
66
+ msgstr ""
67
+
68
+ #: class-easywpsmtp-admin.php:30
69
  msgid "Are you sure want to clear log?"
70
  msgstr ""
71
 
72
+ #: class-easywpsmtp-admin.php:31
73
  msgid "Log cleared."
74
  msgstr ""
75
 
76
+ #: class-easywpsmtp-admin.php:32
77
  msgid "Error occurred:"
78
  msgstr ""
79
 
80
+ #: class-easywpsmtp-admin.php:33
81
  msgid "Sending..."
82
  msgstr ""
83
 
84
+ #: class-easywpsmtp-admin.php:34
85
  msgid "Are you sure you want to delete ALL your settings and deactive plugin?"
86
  msgstr ""
87
 
88
+ #: class-easywpsmtp-admin.php:35
89
  msgid "All settings have been deleted and plugin is deactivated."
90
  msgstr ""
91
 
92
+ #: class-easywpsmtp-admin.php:60
93
+ msgid "PHP OpenSSL extension is not installed on the server. It's required by Easy WP SMTP plugin to operate properly. Please contact your server administrator or hosting provider and ask them to install it."
94
  msgstr ""
95
 
96
+ #: class-easywpsmtp-admin.php:63
97
+ msgid "PHP OpenSSL extension is not installed on the server. It is required for encryption to work properly. Please contact your server administrator or hosting provider and ask them to install it."
 
 
 
 
 
 
 
 
 
 
98
  msgstr ""
99
 
100
+ #. translators: %s is PHP version
101
+ #: class-easywpsmtp-admin.php:71
102
+ msgid "Your PHP version is %s, encryption function requires PHP version 5.3.0 or higher."
 
 
103
  msgstr ""
104
 
105
+ #: class-easywpsmtp-admin.php:76
106
  msgid "Easy WP SMTP Settings"
107
  msgstr ""
108
 
109
+ #: class-easywpsmtp-admin.php:107
 
 
 
 
 
110
  msgid "Please enter a valid email address in the 'FROM' field."
111
  msgstr ""
112
 
113
+ #: class-easywpsmtp-admin.php:151
114
  msgid "Please enter a valid port in the 'SMTP Port' field."
115
  msgstr ""
116
 
117
+ #: class-easywpsmtp-admin.php:160
118
  msgid "Settings saved."
119
  msgstr ""
120
 
121
+ #: class-easywpsmtp-admin.php:162
122
  msgid "Settings are not saved."
123
  msgstr ""
124
 
125
+ #: class-easywpsmtp-admin.php:174
126
  msgid "Please enter a valid email address in the recipient email field."
127
  msgstr ""
128
 
129
+ #: class-easywpsmtp-admin.php:200
130
  msgid "SMTP Settings"
131
  msgstr ""
132
 
133
+ #: class-easywpsmtp-admin.php:201
134
  msgid "Additional Settings"
135
  msgstr ""
136
 
137
+ #: class-easywpsmtp-admin.php:202
138
+ #: class-easywpsmtp-admin.php:436
139
  msgid "Test Email"
140
  msgstr ""
141
 
142
+ #: class-easywpsmtp-admin.php:214
143
  msgid "SMTP Configuration Settings"
144
  msgstr ""
145
 
146
+ #: class-easywpsmtp-admin.php:217
147
+ msgid "You can request your hosting provider for the SMTP details of your site. Use the SMTP details provided by your hosting provider to configure the following settings."
 
 
 
148
  msgstr ""
149
 
150
+ #: class-easywpsmtp-admin.php:221
151
  msgid "From Email Address"
152
  msgstr ""
153
 
154
+ #: class-easywpsmtp-admin.php:224
155
  msgid "This email address will be used in the 'From' field."
156
  msgstr ""
157
 
158
+ #: class-easywpsmtp-admin.php:228
159
  msgid "From Name"
160
  msgstr ""
161
 
162
+ #: class-easywpsmtp-admin.php:231
163
  msgid "This text will be used in the 'FROM' field"
164
  msgstr ""
165
 
166
+ #: class-easywpsmtp-admin.php:233
167
  msgid "Force From Name Replacement"
168
  msgstr ""
169
 
170
+ #: class-easywpsmtp-admin.php:235
171
+ msgid "When enabled, the plugin will set the above From Name for each email. Disable it if you're using contact form plugins, it will prevent the plugin from replacing form submitter's name when contact email is sent."
 
 
 
172
  msgstr ""
173
 
174
+ #: class-easywpsmtp-admin.php:237
175
+ msgid "If email's From Name is empty, the plugin will set the above value regardless."
 
 
176
  msgstr ""
177
 
178
+ #: class-easywpsmtp-admin.php:242
179
  msgid "Reply-To Email Address"
180
  msgstr ""
181
 
182
+ #: class-easywpsmtp-admin.php:245
183
+ msgid "Optional. This email address will be used in the 'Reply-To' field of the email. Leave it blank to use 'From' email as the reply-to value."
 
 
184
  msgstr ""
185
 
186
+ #: class-easywpsmtp-admin.php:247
187
+ msgid "Substitute Mode"
188
+ msgstr ""
189
+
190
+ #: class-easywpsmtp-admin.php:249
191
+ msgid "When enabled, the plugin will substitute occurances of the above From Email with the Reply-To Email address. The Reply-To Email will still be used if no other Reply-To Email is present. This option can prevent conflicts with other plugins that specify reply-to email addresses but still replaces the From Email with the Reply-To Email."
192
+ msgstr ""
193
+
194
+ #: class-easywpsmtp-admin.php:254
195
  msgid "SMTP Host"
196
  msgstr ""
197
 
198
+ #: class-easywpsmtp-admin.php:257
199
  msgid "Your mail server"
200
  msgstr ""
201
 
202
+ #: class-easywpsmtp-admin.php:261
203
  msgid "Type of Encryption"
204
  msgstr ""
205
 
206
+ #: class-easywpsmtp-admin.php:268
207
  msgid "None"
208
  msgstr ""
209
 
210
+ #: class-easywpsmtp-admin.php:274
211
  msgid "SSL/TLS"
212
  msgstr ""
213
 
214
+ #: class-easywpsmtp-admin.php:280
215
  msgid "STARTTLS"
216
  msgstr ""
217
 
218
+ #: class-easywpsmtp-admin.php:281
219
  msgid "For most servers SSL/TLS is the recommended option"
220
  msgstr ""
221
 
222
+ #: class-easywpsmtp-admin.php:285
223
  msgid "SMTP Port"
224
  msgstr ""
225
 
226
+ #: class-easywpsmtp-admin.php:288
227
  msgid "The port to your mail server"
228
  msgstr ""
229
 
230
+ #: class-easywpsmtp-admin.php:292
231
  msgid "SMTP Authentication"
232
  msgstr ""
233
 
234
+ #: class-easywpsmtp-admin.php:299
235
  msgid "No"
236
  msgstr ""
237
 
238
+ #: class-easywpsmtp-admin.php:305
239
  msgid "Yes"
240
  msgstr ""
241
 
242
+ #: class-easywpsmtp-admin.php:306
243
  msgid "This options should always be checked 'Yes'"
244
  msgstr ""
245
 
246
+ #: class-easywpsmtp-admin.php:310
247
  msgid "SMTP Username"
248
  msgstr ""
249
 
250
+ #: class-easywpsmtp-admin.php:313
251
  msgid "The username to login to your mail server"
252
  msgstr ""
253
 
254
+ #: class-easywpsmtp-admin.php:317
255
  msgid "SMTP Password"
256
  msgstr ""
257
 
258
+ #: class-easywpsmtp-admin.php:320
259
  msgid "The password to login to your mail server"
260
  msgstr ""
261
 
262
+ #: class-easywpsmtp-admin.php:321
263
+ #: class-easywpsmtp-admin.php:438
264
+ #: class-easywpsmtp-admin.php:490
265
  msgctxt "\"Note\" as in \"Note: keep this in mind\""
266
  msgid "Note:"
267
  msgstr ""
268
 
269
+ #: class-easywpsmtp-admin.php:321
270
+ msgid "when you click \"Save Changes\", your actual password is stored in the database and then used to send emails. This field is replaced with a gag (#easywpsmtpgagpass#). This is done to prevent someone with the access to Settings page from seeing your password (using password fields unmasking programs, for example)."
 
 
 
 
 
271
  msgstr ""
272
 
273
+ #: class-easywpsmtp-admin.php:326
274
+ #: class-easywpsmtp-admin.php:388
275
  msgid "Save Changes"
276
  msgstr ""
277
 
278
+ #: class-easywpsmtp-admin.php:336
279
  msgid "Additional Settings (Optional)"
280
  msgstr ""
281
 
282
+ #: class-easywpsmtp-admin.php:340
283
  msgid "Don't Replace \"From\" Field"
284
  msgstr ""
285
 
286
+ #: class-easywpsmtp-admin.php:343
287
+ msgid "Comma separated emails list. Example value: email1@domain.com, email2@domain.com"
 
 
288
  msgstr ""
289
 
290
+ #: class-easywpsmtp-admin.php:344
291
+ msgid "This option is useful when you are using several email aliases on your SMTP server. If you don't want your aliases to be replaced by the address specified in \"From\" field, enter them in this field."
 
 
 
292
  msgstr ""
293
 
294
+ #: class-easywpsmtp-admin.php:348
295
  msgid "Enable Domain Check"
296
  msgstr ""
297
 
298
+ #: class-easywpsmtp-admin.php:351
299
+ msgid "This option is usually used by developers only. SMTP settings will be used only if the site is running on following domain(s):"
 
 
300
  msgstr ""
301
 
302
+ #: class-easywpsmtp-admin.php:353
303
  msgid "Coma-separated domains list. Example: domain1.com, domain2.com"
304
  msgstr ""
305
 
306
+ #: class-easywpsmtp-admin.php:355
307
  msgid "Block all emails"
308
  msgstr ""
309
 
310
+ #: class-easywpsmtp-admin.php:357
311
+ msgid "When enabled, plugin attempts to block ALL emails from being sent out if domain mismtach."
 
 
312
  msgstr ""
313
 
314
+ #: class-easywpsmtp-admin.php:361
315
  msgid "Encrypt Password"
316
  msgstr ""
317
 
318
+ #: class-easywpsmtp-admin.php:365
319
+ msgid "When enabled, your SMTP password is stored in the database using AES-256 encryption."
 
 
320
  msgstr ""
321
 
322
+ #: class-easywpsmtp-admin.php:372
323
  msgid "Allow Insecure SSL Certificates"
324
  msgstr ""
325
 
326
+ #: class-easywpsmtp-admin.php:375
327
+ msgid "Allows insecure and self-signed SSL certificates on SMTP server. It's highly recommended to keep this option disabled."
 
 
328
  msgstr ""
329
 
330
+ #: class-easywpsmtp-admin.php:379
331
  msgid "Enable Debug Log"
332
  msgstr ""
333
 
334
+ #: class-easywpsmtp-admin.php:382
335
  msgid "Check this box to enable mail debug log"
336
  msgstr ""
337
 
338
+ #: class-easywpsmtp-admin.php:383
339
+ msgid "View Log"
340
  msgstr ""
341
 
342
+ #: class-easywpsmtp-admin.php:383
343
+ msgid "Clear Log"
344
  msgstr ""
345
 
346
+ #: class-easywpsmtp-admin.php:395
347
  msgid "Danger Zone"
348
  msgstr ""
349
 
350
+ #: class-easywpsmtp-admin.php:397
351
+ msgid "Actions in this section can (and some of them will) erase or mess up your settings. Use it with caution."
 
 
352
  msgstr ""
353
 
354
+ #: class-easywpsmtp-admin.php:400
355
  msgid "Export\\Import Settings"
356
  msgstr ""
357
 
358
+ #: class-easywpsmtp-admin.php:402
359
  msgid "Export Settings"
360
  msgstr ""
361
 
362
+ #: class-easywpsmtp-admin.php:403
363
  msgid "Use this to export plugin settings to a file."
364
  msgstr ""
365
 
366
+ #: class-easywpsmtp-admin.php:405
367
  msgid "Import Settings"
368
  msgstr ""
369
 
370
+ #: class-easywpsmtp-admin.php:406
371
+ msgid "Use this to import plugin settings from a file. Note this would replace all your existing settings, so use with caution."
 
 
372
  msgstr ""
373
 
374
+ #: class-easywpsmtp-admin.php:410
375
  msgid "Delete Settings and Deactivate Plugin"
376
  msgstr ""
377
 
378
+ #: class-easywpsmtp-admin.php:412
379
  msgid "Self-destruct"
380
  msgstr ""
381
 
382
+ #: class-easywpsmtp-admin.php:412
383
+ msgid "This will remove ALL your settings and deactivate the plugin. Useful when you're uninstalling the plugin and want to completely remove all crucial data stored in the database."
 
 
 
384
  msgstr ""
385
 
386
+ #: class-easywpsmtp-admin.php:413
387
  msgid "Warning! This can't be undone."
388
  msgstr ""
389
 
390
+ #: class-easywpsmtp-admin.php:438
391
+ msgid "You have unsaved settings. In order to send a test email, you need to go back to previous tab and click \"Save Changes\" button first."
 
 
392
  msgstr ""
393
 
394
+ #: class-easywpsmtp-admin.php:444
395
  msgid "Following error occurred when attempting to send test email:"
396
  msgstr ""
397
 
398
+ #: class-easywpsmtp-admin.php:447
399
+ msgid "Test email was successfully sent. No errors occurred during the process."
 
400
  msgstr ""
401
 
402
+ #: class-easywpsmtp-admin.php:458
403
+ #: class-easywpsmtp-admin.php:466
404
  msgid "Show Debug Log"
405
  msgstr ""
406
 
407
+ #: class-easywpsmtp-admin.php:468
408
  msgid "Hide Debug Log"
409
  msgstr ""
410
 
411
+ #: class-easywpsmtp-admin.php:489
412
+ msgid "You can use this section to send an email from your server using the above configured SMTP details to see if the email gets delivered."
 
 
413
  msgstr ""
414
 
415
+ #: class-easywpsmtp-admin.php:490
416
+ msgid "debug log for this test email will be automatically displayed right after you send it. Test email also ignores \"Enable Domain Check\" option."
 
 
417
  msgstr ""
418
 
419
+ #: class-easywpsmtp-admin.php:495
420
  msgid "To"
421
  msgstr ""
422
 
423
+ #: class-easywpsmtp-admin.php:498
424
  msgid "Enter the recipient's email address"
425
  msgstr ""
426
 
427
+ #: class-easywpsmtp-admin.php:502
428
  msgid "Subject"
429
  msgstr ""
430
 
431
+ #: class-easywpsmtp-admin.php:505
432
  msgid "Enter a subject for your message"
433
  msgstr ""
434
 
435
+ #: class-easywpsmtp-admin.php:509
436
  msgid "Message"
437
  msgstr ""
438
 
439
+ #: class-easywpsmtp-admin.php:512
440
  msgid "Write your email message"
441
  msgstr ""
442
 
443
+ #: class-easywpsmtp-admin.php:517
444
  msgid "Send Test Email"
445
  msgstr ""
446
 
447
+ #: class-easywpsmtp-admin.php:530
448
  msgid "Documentation"
449
  msgstr ""
450
 
451
+ #. translators: %s is replaced by documentation page URL
452
+ #: class-easywpsmtp-admin.php:536
453
+ msgctxt "%s is replaced by <a target=\"_blank\" href=\"https://wp-ecommerce.net/easy-wordpress-smtp-send-emails-from-your-wordpress-site-using-a-smtp-server-2197\">Easy WP SMTP</a>"
454
+ msgid "Please visit the %s plugin's documentation page to learn how to use this plugin."
 
 
 
 
 
455
  msgstr ""
456
 
457
+ #: class-easywpsmtp-admin.php:544
458
  msgid "Support"
459
  msgstr ""
460
 
461
+ #. translators: %s is replaced by support forum URL
462
+ #: class-easywpsmtp-admin.php:550
463
  msgctxt "%s is replaced by \"Support Forum\" link"
464
  msgid "Having issues or difficulties? You can post your issue on the %s"
465
  msgstr ""
466
 
467
+ #: class-easywpsmtp-admin.php:554
468
  msgid "Support Forum"
469
  msgstr ""
470
 
471
+ #: class-easywpsmtp-admin.php:561
472
  msgid "Rate Us"
473
  msgstr ""
474
 
475
+ #. translators: %s is replaced by rating link
476
+ #: class-easywpsmtp-admin.php:567
477
  msgctxt "%s is replaced by \"rating\" link"
478
  msgid "Like the plugin? Please give us a %s"
479
  msgstr ""
480
 
481
+ #: class-easywpsmtp-admin.php:571
482
  msgid "rating"
483
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: wpecommerce, wp.insider, alexanderfoxc
3
  Donate link: https://wp-ecommerce.net/easy-wordpress-smtp-send-emails-from-your-wordpress-site-using-a-smtp-server-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: 4.3
6
- Tested up to: 5.4
7
  Requires PHP: 5.6
8
- Stable tag: 1.3.9.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -79,6 +79,13 @@ Inspired by [WP Mail SMTP](http://wordpress.org/plugins/wp-mail-smtp/) plugin
79
 
80
  == Changelog ==
81
 
 
 
 
 
 
 
 
82
  = 1.3.9.3 =
83
  * Removed the warning: Undefined index log_file_name
84
  * Added "substitute mode" option for the "Reply-To" field. Thanks to @idave2012
3
  Donate link: https://wp-ecommerce.net/easy-wordpress-smtp-send-emails-from-your-wordpress-site-using-a-smtp-server-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: 4.3
6
+ Tested up to: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 1.4.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
79
 
80
  == Changelog ==
81
 
82
+ = 1.4.0 =
83
+ * Added compatibility with WordPress 5.5 (regarding changes to PHPMailer in WordPress Core).
84
+ * Fixed a conflict with the Clicky for WordPress plugin's user interface.
85
+
86
+ = 1.3.9.4 =
87
+ * Removed unnecessary SQL queries execution on every admin page (thanks to @r33d3m33r for reporting).
88
+
89
  = 1.3.9.3 =
90
  * Removed the warning: Undefined index log_file_name
91
  * Added "substitute mode" option for the "Reply-To" field. Thanks to @idave2012