-
Notifications
You must be signed in to change notification settings - Fork 28
/
readme.txt
1015 lines (697 loc) · 46.7 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== Post SMTP - WordPress SMTP Plugin with Email Logs and Mobile App for Failure Notifications - Gmail SMTP, Office 365, Brevo, Mailgun, Amazon SES and more ===
Plugin URI: https://postmansmtp.com/
Contributors: wpexpertsio
Tags: smtp, gmail smtp, email, email logs, office 365
Requires at least: 5.6.0
Tested up to: 6.6
Stable tag: 3.0.0
Requires PHP: 7.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
The world's leading WordPress SMTP plugin! Connect any SMTP, including Gmail SMTP, Microsoft 365, Brevo, SendGrid, Mailgun, Zoho, Amazon SES, and more.
== Description ==
[💻Live Demo](https://www.tastewp.com/plugins/post-smtp) | [🔌Extensions](https://postmansmtp.com/extension/?utm_source=wp_org&utm_medium=readme_top) | [📱Mobile Application](https://postmansmtp.com/documentation/post-smtp-mobile-app/download-the-app-and-connect-with-plugin/?utm_source=wp_org&utm_medium=readme_top)
### WordPress Mail SMTP Plugin
https://www.youtube.com/watch?v=KOWGLQ0MaX0
Are you facing the WordPress not sending emails issue❓ Don't worry! Install the Post SMTP Plugin for smooth WordPress email deliverability.
Over **400,000** website owners use **Post SMTP** daily to send WordPress emails securely and reliably💯.
Post SMTP is a free and next-generation WordPress SMTP plugin that has everything you need to improve the email deliverability of your WordPress site.
The best part is that the Post SMTP plugin helps you configure any SMTP mailer, including Microsoft 365 (formerly Office 365), with proper authentication that guarantees the delivery of your WordPress emails and prevents them from being marked as spam.
With the ✨[Post SMTP Pro version](https://postmansmtp.com/pricing/?utm_source=wp_org&utm_medium=read_me)✨, you can unlock even more advanced features, such as detailed email logs, email delivery stats and reporting, Microsoft 365 (formerly Office 365), Amazon SES, Zoho SMTP integration, multiple email failure alert options, and more.
== What is SMTP, and Why Do You Need It? ==
**SMTP**, short for Simple Mail Transfer Protocol, is the most widely used protocol for online email transmission. SMTP configuration with proper authentication for your WordPress site ensures that your WordPress emails do not end up in spam.
**By default**, WordPress sends emails using the PHP mail function, which isn't ideal because most WordPress hosting servers don't support PHP email.
On top of that, most email clients, such as Outlook (Office 365 / Microsoft365), Yahoo, Gmail, Brevo, Zoho, Amazon SES, Mailgun, etc., automatically block or mark spam emails that lack proper authentication.
That's why you need to install the Post SMTP plugin on your WordPress site to configure the SMTP mailer of your choice.
== How Does Post SMTP Work? ==
Post SMTP allows you to easily replace the default PHP mail function (wp_mail) of your WordPress site with the SMTP mailer of your choice, like [Microsoft 365](https://postmansmtp.com/extensions/office-365-extension-for-post-smtp/?utm_source=wp_org&utm_medium=read_me)(Office 365), Brevo, Zoho, [SendGrid](https://postmansmtp.com/configure-wordpress-with-sendgrid/), [Mailgun SMTP](https://postmansmtp.com/setup-mailgun-for-wordpress/), Gmail [(Gmail SMTP Server)](https://postmansmtp.com/how-to-configure-post-smtp-with-gmailgsuite-using-oauth/), Post Mark, Amazon SES etc., which in turn improves WordPress email deliverability.
**NOTE:** With Post SMTP you get detailed email logs to track your email delivery status, open tracking and more.
Additionally, with a [3-step setup wizard](https://postmansmtp.com/introducing-the-new-3-step-setup-wizard-for-post-smtp/?utm_source=wp_org&utm_medium=read_me) using OAuth (open authentication), you can configure any SMTP mailer (e.g., Gmail SMTP, Office 365, Mailgun, Brevo, etc.) securely via API Keys in seconds without providing your SMTP account credentials.
**NOTE:** If you want to add Gmail SMTP server, then check out our detailed guide on [how to configure Gmail SMTP server](https://postmansmtp.com/how-to-configure-post-smtp-with-gmailgsuite-using-oauth/) to send WordPress emails reliably.
Ultimately, the Post SMTP helps you fix all your issues related to [WordPress not sending emails.](https://postmansmtp.com/wordpress-not-sending-emails/?utm_source=wp_org&utm_medium=read_me)
== ⚡ Features That Make Post SMTP Stand Out ==
✅ **Quick Setup Wizard:** Easy-to-use and powerful 3-Step Setup Wizard for quick SMTP configuration.
✅ **Detailed Email Logs:** Quickly view, filter, and check the status of all your WordPress emails and error messages with a simple click, ensuring your email logs are always up to date.
✅ **Post SMTP Mobile App [NEW]:** You get an App for monitoring your WordPress emails on the go. You can connect multiple WordPress sites, view detailed email logs, check email errors, and resend them with a single tap directly from your mobile.
✅ **Extensive Email Reporting:** Get a thorough report at a glance regarding your WordPress email deliverability performance, including email open tracking and other important stats.
✅ **Resend Email Attachments [PRO]:** With a single click, you can resend any email attachment right through your email log screen, maintaining a seamless record in your email logs.
✅ **OAuth 2.0 Support:** Authenticate all major SMTP service providers' accounts (i.e., Office 365/Microsoft365, Brevo, Gmail SMTP, Amazon SES, SendGrid, Mailgun, etc.) securely using APIs.
✅ **Fallback Mailing:** Easily set up a backup WordPress SMTP mailer to send any transactional email in case of a failure with the main mailer.
✅ **Instant Failure Notification:** In case of any WordPress email delivery failure, you'll get an instant push notification via Email, Pushover, or Slack.
✅ **Free Chrome Extension:** Receive all your WordPress email failure alerts directly into your Chrome browser window.
✅ **Weekly Email Summary:** Get a snapshot of your WordPress email delivery report right in your inbox every week, which reveals the total number of emails, number of failed emails, total successful email deliveries, and your recent email logs.
✅ **Unparalleled Customer Support:** We offer multiple support options, including email, a WordPress forum, and even one-on-one expert assistance for [WordPress SMTP Configuration](https://postmansmtp.com/configuration-request/?utm_source=wp_org&utm_medium=read_me) and all your email delivery issues.
== ⚡ Post SMTP Mobile App: Get an Instant Pulse of Your WordPress Emails ==
✅ **Keep track of Your Emails:** You can monitor all the emails sent from your WordPress site and check the status of each email.
✅ **Get Instant Alerts:** When an email fails to deliver, you will receive an instant notification on your phone.
✅ **Resend Failed Emails [PRO]:** With one tap on your app, you can resend any failed email.
Preview Any Email: You can preview your emails and see how it looks.
✅ **Connect Multiple Sites [PRO]:** Monitor email logs and get email failure notifications for all your WordPress sites right from the app.
✅ **Troubleshoot Errors:** Quickly fix email failure issues by viewing the error details with a single tap.
https://www.youtube.com/watch?v=Oxs3qintyLU
== SMTP Mailer Options for Post SMTP ==
With Post SMTP, you get many SMTP mailer options, such as:
* [Brevo (formerly Sendinblue) SMTP](https://postmansmtp.com/documentation/sockets-addons/how-to-setup-sendinblue-aka-brevo-with-post-smtp/?utm_source=wp_org&utm_medium=read_me) - **Recommended**
* [Microsoft 365 SMTP (Formerly Office 365 and Outlook)](https://postmansmtp.com/office-365-for-wordpress/?utm_source=wp_org&utm_medium=read_me)
* [Gmail SMTP (Gmail API, G Suite, Google Workspace)](https://postmansmtp.com/how-to-configure-post-smtp-with-gmailgsuite-using-oauth/?utm_source=wp_org&utm_medium=read_me)
* [Amazon SES SMTP](https://postmansmtp.com/extensions/post-smtp-extension-for-amazon-ses/?utm_source=wp_org&utm_medium=read_me)
* [Zoho Mail SMTP](https://postmansmtp.com/extensions/zoho-mail-pro-extension/?utm_source=wp_org&utm_medium=read_me)
* [Mandrill SMTP](https://postmansmtp.com/documentation/sockets-addons/how-to-setup-mandrill-with-post-smtp/?utm_source=wp_org&utm_medium=read_me)
* [Mailgun SMTP](https://postmansmtp.com/setup-mailgun-for-wordpress/?utm_source=wp_org&utm_medium=read_me)
* [SendGrid SMTP](https://postmansmtp.com/documentation/sockets-addons/how-to-setup-sendgrid-with-post-smtp/?utm_source=wp_org&utm_medium=read_me)
* [Mailjet SMTP](https://postmansmtp.com/documentation/sockets-addons/configure-post-smtp-with-mailjet/?utm_source=wp_org&utm_medium=read_me)
* [SparkPost SMTP](https://postmansmtp.com/documentation/sockets-addons/sparkpost/?utm_source=wp_org&utm_medium=read_me)
* [Postmark SMTP](https://postmansmtp.com/documentation/sockets-addons/postmark/?utm_source=wp_org&utm_medium=read_me)
* [Elastic Email SMTP](https://postmansmtp.com/documentation/sockets-addons/configure-post-smtp-with-elastic-email/?utm_source=wp_org&utm_medium=read_me)
* [Other SMTP](https://postmansmtp.com/documentation/sockets-addons/configure-post-smtp-with-other-smtp/?utm_source=wp_org&utm_medium=read_me) (To connect any SMTP server)
You often need to install a different plugin for each SMTP mailer, but with Post SMTP, you don't have to do that, which makes Post SMTP the perfect one-stop solution for all your WordPress emails.
== Microsoft 365 SMTP ==
Millions of businesses around the world use Microsoft 365 (formerly Office 365) or Outlook for their email communications. With Post SMTP Pro, you can easily connect your existing [Outlook or
Microsoft 365 (formerly Office365) account with WordPress](https://postmansmtp.com/connect-microsoft-outlook-to-wordpress/?utm_source=wp_org&utm_medium=read_me) to improve email deliverability.
👉 For more details, check out our guide on [how to set up Microsoft 365 for WordPress emails.](https://postmansmtp.com/office-365-for-wordpress/?utm_source=wp_org&utm_medium=read_me)
== Amazon SES SMTP ==
Amazon SES (Simple Email Service) is a cloud-based email service that can send transactional and mass emails. SES is cost-effective, reliable, and scalable. Using the Post SMTP Pro, you can securely integrate your Amazon SES account with WordPress via APIs so that you can send large numbers of emails on a budget.
👉 For more details, check out our [Amazon SES documentation.](https://postmansmtp.com/documentation/sockets-addons/amazon-ses-pro/?utm_source=wp_org&utm_medium=read_me)
== Zoho Mail SMTP ==
Connect your Zoho mail personal or business account with WordPress via Post SMTP Pro to improve email deliverability. It has a 99.9% server uptime and offers a free option.
👉 For more details, check out our [Zoho Mail documentation](https://postmansmtp.com/documentation/sockets-addons/zoho-with-post-smtp/?utm_source=wp_org&utm_medium=read_me).
👉 To learn about all the supported SMTP mailers, check out our [Complete SMTP Mailer Guide.](https://postmansmtp.com/documentation/sockets-addons/post-smtp-complete-mailer-guide/?utm_source=wp_org&utm_medium=read_me)
== ⚡ Added Benefits of Getting Post SMTP Pro ==
The Post SMTP Pro gives you an edge that makes your WordPress email management and performance reporting a breeze! With Post SMTP Pro, you get the following additional perks:
✅ **Native SMTP Integration:** If you are a user of Microsoft 365, Amazon SES, or Zoho Mail, then you can securely configure your SMTP account with WordPress using APIs.
✅ **Twilio (SMS)** Easily configure and receive all your WordPress email failure alerts through SMS by connecting your Twilio account.
✅ **Secondary SMTP Connection:** Using the Post SMTP Pro, you can set up multiple SMTP mailers so that for any reason, whenever an email fails to deliver, Post SMTP will automatically route that email through the secondary SMTP connection. In turn, this will improve your email delivery rate.
✅ **Weekly Email Health Report:** As a Post SMTP Pro member, you get a weekly email report that reveals all your deliverability statistics at a glance, such as the total number of emails sent from your WordPress site, the number of failed emails, the total number of successful email deliveries, and the complete email logs report so you can identify any issues right away without login into your WordPress.
✅ **Email Open Tracking:** Are you curious about which of your emails get opened? With Post SMTP Pro, you can easily view email open tracking right on your email log screen, which greatly enhances your ability to analyze the performance of your WordPress emails.
✅ **Auto Resend Failed Emails:** With Post SMTP Pro, you can effortlessly increase your WordPress email delivery success rate by simply specifying the number of resubmission attempts after the first failed submission.
✅ **Email Batching and Quota Scheduling:** Avoid any spam detection and daily email limit exceeding issues with the Post SMTP email batching and quota scheduling feature. As a pro user, you can easily specify the duration and number of emails per batch and choose how often to send the emails (hourly, daily, weekly, or monthly) for optimal email delivery.
✅ **Priority Support:** We offer exceptional customer support to all the Post SMTP Pro users. You can access our team of WordPress experts on one-on-one email support 24/7 for any WordPress email-related issue. Also, we offer WordPress SMTP Configuration service on demand.
== 🆕 MainWP Post SMTP Extension - NEW ==
**Manage WP SMTP Configuration Across All Your Sites From One Dashboard**
With MainWP Post SMTP Extension, you can:
* **Set up and sync your SMTP** settings for all your sites with one click
* **Ensure reliable email delivery** with a backup SMTP connection
* **Receive instant email failure alerts** via email, push notifications, slack, or SMS
* **Track and resend your WordPress emails** with a dedicated mobile app
* **Access detailed email logs** of all your sites in one place
**MainWP Post SMTP Extension** is the ultimate solution for WordPress email management. Get it today and enjoy the benefits of easy and efficient WP SMTP management.🙃
== ⛑ Need Help? Get Expert Assistance on Demand!!! ==
Our Expert Assistance is something that anyone can benefit from. Whether you are facing email delivery issues or need help with WordPress SMTP configuration - we are here to help!
All you need is to [click here](https://postmansmtp.com/configuration-request/?utm_source=wp_org&utm_medium=read_me), fill out the form, sit back, and relax while our WordPress expert sets up your SMTP configuration. Also, you can request us to configure all your [DNS records](https://postmansmtp.com/dmarc-spf-dkim/?utm_source=wp_org&utm_medium=read_me) for proper email authentication.
In short, our Expert Assistance is your one-stop destination for all your WordPress email delivery issues.
== Compatibility and Support ==
* Contact Form 7
* Woocommerce
* New User Approve
* Password Protected
* Elementor Forms
* Gravity Forms
* Login Designer
* Visual Forms Builder
* Mailster Newsletter plugin
* SendPress Newsletters
* WP HTML Mail
* Email Templates
.. and every other plugin that uses the WordPress API wp_mail to send mail!
== Requirements ==
* WordPress v6.2 and above is recommended
* PHP v7.6 and above is recommended.
* Memory should be at least 800KiB per processing at idle.
* Ensure your email service provider allows SMTP connection through 3rd party applications, if not you can have it enabled.(Other SMTP)
* Reliable delivery requires valid credentials for a particular email service provider. (Other SMTP)
== Frequently Asked Questions ==
= What is OAuth 2.0? =
A modern replacement for traditional password-based authentication. Post supports the OAuth 2.0 implementations of all three major e-mail providers: Gmail, Office365, Brevo, Mailgun, Hotmail and Yahoo Mail.
= How does OAuth 2.0 work? =
Post requests a limited access OAuth 2.0 token (valet key) to access the APIs (enter the house) and perform a specific service (handle Gmail SMTP, stay out of Google Docs) with no need for you to surrender your username and password credentials (master house key).
Once access is granted, Post commandeers the WordPress wp_mail() function to provide an incredibly stable mail sub-system.
There are many reasons why OAuth 2.0 is better than any password-based mechanism:
* Post will never ask for your password, so your password can't be stolen
* If you change your password regularly, you will never have to update Post's configuration
* You have tighter control over the data Post has access to. For Google users, it can never access your Calendar or Docs or YouTube; for Yahoo users, it can never access your Flickr
* If your WordPress site gets hacked, you can revoke Post's email access without impacting any other application or website that has access to your account
> **[NEVER give out your Gmail, Microsoft or Yahoo password](http://blog.varonis.com/giving-away-your-passwords/)** to a 3rd-party or 3rd-party program that you don't fully trust.
= Can I use this plugin to send via Outlook, Microsoft 365, Gmail SMTP, Zoho, Yahoo, or SendGrid SMTP? =
Yes! With the Post SMTP Plugin, you can configure any SMTP mailer account, including Brevo, Mailgun, and SendGrid on your WordPress site. Check out our [detailed SMTP configuration documentation](https://postmansmtp.com/documentation/sockets-addons/?utm_source=wp_org&utm_medium=read_me) for all major SMTP service providers.
= What is a Client ID? =
To use OAuth, your website needs its own Client ID. The Client ID is used to control authentication and authorization and is tied to the specific URL of your website. If you manage several websites, you will need a different Client ID for each one.
= How do I get a Microsoft Client ID? (For Hotmail/Live/Outlook.com users only!) =
1. Go to [Microsoft account Developer Center](https://account.live.com/developers/applications/index) and select 'Create application'.
1. In the 'Application name' field, enter 'Post SMTP'. Select 'I accept.'
1. Select 'API Settings' from under 'Settings'.
1. In 'Redirect URL', enter the redirect URI given by Post (either from the wizard or from the manual configuration page). Select Save.
1. Select 'App Settings' from under 'Settings'.
1. Enter the Client ID and Client Secret displayed here into the Post's settings page.
= How do I get a Yahoo Client ID? (For Yahoo Mail users only!) =
1. Go to [Yahoo Developer Network](https://developer.yahoo.com/apps/) and select 'Create an App'.
1. In the 'Application Name' field, enter 'Post SMTP'. For 'Application Type', choose 'Web Application'.
1. In 'Home Page URL', enter the 'Home Page URL' given by Post.
1. In 'Callback Domain', enter the 'Callback Domain' given by Post.
1. Under 'API Permissions', choose 'Mail.' Under 'Mail' choose 'Read/Write'
1. Click 'Create App'
1. Enter the Client ID and Client Secret displayed here into the Post's settings page.
= How can I revoke Post's OAuth 2.0 access? =
* If you have a Google Account from the [Google Developer's Console](https://www.google.com/accounts/Logout?continue=https://console.developers.google.com), use the Delete button under the Client ID.
* If you have a Microsoft Live account, from the [Microsoft account Developer Center](https://account.live.com/developers/applications/index), select the Application and choose Delete Application.
* If you have a Yahoo Account, from the [Yahoo Developer Network My Apps](https://developer.yahoo.com/apps/), select the Application and choose Delete App.
= How can I report security bugs? =
You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team helps validate, triage, and handle any security vulnerabilities. [Report a security vulnerability.](https://patchstack.com/database/vulnerability/post-smtp)
== Screenshots ==
1. WordPress Post SMTP Dashboard - To access all the Post SMTP functionality at a glance.
2. Post SMTP New Setup Wizard (Step-01) - Choose your SMTP mailer
3. Post SMTP New Setup Wizard (Step -02) - Configure your mailer settings
4. Post New Setup Wizard (Step -03) - Send test email
5. Detailed Email Logs - View failed and successfully sent emails, resend, preview, and analyze error details
6. Post SMTP Mobile App Screen - Scan the QR code from the mobile app and connect it to track your WordPress emails.
7. Post SMTP Settings - Set email failure alerts on Slack, Email, Twilio, and Chrome extension
## Upgrade Notice ##
### 2.8.11 ###
Important: If you are using version 2.8.7 or lower of our plugin, please update to the latest version as soon as possible. This update contains an urgent security fix that prevents potential vulnerabilities and attacks. We apologize for any inconvenience this may cause you and we appreciate your cooperation. Thank you for using our plugin.
== Changelog ==
= 3.0.0 - Oct 14, 2024 =
* New: Introduced all [New Post SMTP Dashboard](Link) for users' ease.
* New: Introduced new SMTP socket [SMTP2GO](Link)
* New: Introduced new Send Mail user interface.
* New: Introduced Webhook, so you can add Webhook URL to get notified when an email is failed [How to Setup Webhook URL](Link)
= 2.9.12 - December 02, 2024 =
* Enhancement - Regenerate QR Code Mobile Applicaion security enhancement in admin view reported by Patchstack.
= 2.9.11 - November 21, 2024 =
* Updated: Feedback SDK to the latest version.
* Tweak: Failed email notification typo fixed.
= 2.9.10 - November 19, 2024 =
* Email logs search security enhancement in admin view reported by [Patchstack](https://patchstack.com/database/vulnerability/post-smtp/wordpress-post-smtp-plugin-2-9-9-sql-injection-vulnerability)
= 2.9.9 - October 01, 2024 =
* Tweak: Typo fixes.
* Tweak: Improved user interface in wizard.
* Fix: PHP deprecated warning on 8.x.
* Fix: Emails count was not accurate in [Weekly email](https://postmansmtp.com/post-smtp-release-v2-9-0-smtp-mailer-and-email-health-report/) in some cases.
= 2.9.8 - August 21, 2024 =
* New: Added SendGrid EU support.
* New: Added [pre_wp_mail](https://developer.wordpress.org/reference/hooks/pre_wp_mail/) filter.
* Tweak: Sometimes Post SMTP was not detecting Post SMTP Pro.
* Updated: Feedback SDK to the latest version.
* Fix - Mailjet - Reply-To email was not working properly.
= 2.9.7 - July 01, 2024 =
* Fix: Logs filter was not working in [Post SMTP Mobile Application](https://postmansmtp.com/post-smtp-mobile-app/?utm_source=wp_org&utm_medium=changelog)
= 2.9.6 2024-06-27 =
* Tweak - Some strings were not translatable.
* Fix - Compatibility added for old PHP Versions.
* Fix - Notice: Only variables should be passed by reference.
= 2.9.5 - 2024-06-25 =
* Added: New Successful, Failed, and All email filter on email logs.
* Added: Option to print email.
* Updated: The user interface of settings tabs
= 2.9.4 - 2024-05-29 =
* Security Improvement: Sanitized SQL queries suggested by Wordfence team.
= 2.9.3 - 2024-05-22 =
* IMPROVEMENT – Email health report settings and template UI
* FIX – Remove false email delivery count from the WordPress dashboard.
= 2.9.2 - 2024-05-13 =
* NEW - Added new filter post_smtp_postmark_content for developers ease.
* UPDATED - Google Client SDK to latest version.
* IMPROVEMENT - Site URL was missing in [Post SMTP Chrome Extension](https://chromewebstore.google.com/detail/post-smtp-notifications/npklmbkpbknkmbohdbpikeidiaekjoch).
= 2.9.1 - 2024-04-22 =
* Bug Fix: error appearing "syntax error, unexpected ')'".
= 2.9.0 - 2024-04-16 =
* New - Added email health report
* New - Added new socket/ email service SendPulse
* Fix - AJAX call was being interrupted by register_setting when specific plugins were activated.
= 2.8.13 - 2024-03-26 =
* FIXED: Reverted last fix as it was conflicting in some cases.
= 2.8.12 - 2024-03-26 =
* FIXED: AJAX call was being interrupted by register_setting when specific plugins were activated.
= 2.8.11 - 2024-01-19 =
* Added link to the [new POST SMTP app for iOS](https://apps.apple.com/us/app/post-smtp/id6473368559) released.
= 2.8.10 - 2024-01-18 =
* Security Improvement: Added check to automatically remove any connected device with incomplete information.
= 2.8.9 - 2024-01-11 =
* Added compatibility for [InstaWP](https://www.instawp.com/)
= 2.8.8 - 2024-01-01 =
* Improvement: Added sanitization and escape functions in [POST SMTP Mobile App](https://postmansmtp.com/post-smtp-app/?utm_source=wp_org&utm_medium=changelog) QR code scanning window.
= 2.8.7 - 2023-12-20 =
* Improvement - added sanitization where missing to improve security
* Improvement - added nonce where missing to improve security
= 2.8.6 - 2023-12-07 =
* Improvement - Changed banner placement for NEW mobile app for POST SMTP to improve UX.
* Improvement - Tweaked dashboard UI for better usability.
= 2.8.5 - 2023-11-23 =
* Fix: In some cases, there was an issue disconnecting mobile application.
= 2.8.4 - 2023-11-20 =
* Fix: From name and emails, prevention settings were not being saved correctly in some cases in the new wizard.
* Fix: In some sockets, the API keys getting saved were encoded in multiple layers.
= 2.8.3 - 2023-11-17 =
* Fix - Getting error when saving settings in some scenarios.
* Improvement - Optimized QR code scanning module for [Post SMTP mobile app](https://postmansmtp.com/documentation/post-smtp-mobile-app/download-the-app-and-connect-with-plugin/?utm_source=wp_org&utm_medium=changelog) to avoid any scanning delays
= 2.8.2 - 2023-11-14 =
* Improvement - PHP < 7.3 compatibility added.
= 2.8.1 - 2023-11-13 =
* Fix - Other SMTP option in the wizard was not saving the settings correctly.
= 2.8.0 - 2023-11-13 =
* NEW - Introducing a NEW 3-step wizard to speed up the initial setup.
* NEW - Added documentation within the wizard to ease out the setup
* NEW - Added new socket/email service for [Mailjet](https://www.mailjet.com/)
* NEW - Added support for default socket within wizard (you can use this option in case you want to use the logs functionality only)
* Fix - Updated the error string as reported by @interaptivre
= 2.7.2 - 2023-11-01 =
* Improvement - Mobile App banner improvement.
= 2.7.1 - 2023-11-01 =
* NEW - Show Mobile App Notice on Post SMTP dashboard
* Improvement - Improved SQL query to meet latest security standards
* Improvement - Added patch to avoid script execution in log content.
= 2.7.0 - 2023-10-26 =
* NEW - Added support for POST SMTP app. [Visit documentation for more information](https://postmansmtp.com/documentation/post-smtp-mobile-app/download-the-app-and-connect-with-plugin/?utm_source=wp_org&utm_medium=changelog)
* Fix - Raw HTML was sent when using ElasticEmail service.
* Fix - Raw HTML was sent when resending emails from the log section.
= 2.6.2 - 2023-10-19 =
* Tested up to WordPress v6.3.2
= 2.6.1 - 2023-10-03 =
* Fix: Removed broken link from test email.
* Improvement: Improved SQL query to meet latest security standards.
* Improvement: Replaced sanitize_text_field() with intval() as suggested by WP Scan team.
= 2.6.0 - 2023-09-12 =
**NEW**
* Elastic mail socket added
* When resetting the plugin settings, the user can check to preserve logs from getting removed
* MainWP integration added. How-to instructions will be available publicly soon.
**FIX**
* When using PHPMailer, the failed email log was not creating
**IMPROVEMENT**
* Now, users can skip the banner from the dashboard.
= 2.5.9.4 - 2023-08-29 =
* API endpoint "SendinBlue" has been updated to "Brevo"
= 2.5.9.3 - 2023-08-17 =
* Minor Tweaks
= 2.5.9.2 - 2023-08-16 =
* Compatible & Tested up to WordPress v6.3
= 2.5.9.1 =
**NEW**
* Added option to refresh recent logs in the dashboard without loading the page.
* Added new hooks in the code to make the functionality extendable.
= 2.5.9 - 2023-07-18 =
**IMPROVEMENTS**
* Improved email log popup content
**FIX**
* Reverted support for HTML view in email content popup with proper checks to avoid CSS conflicts.
**NEW**
* Added new filter post_smtp_before_view_log to extend log section view.
= 2.5.8 - 2023-07-11 =
**IMPROVEMENTS**
* Added function to escape backend email content popup HTML.
* Added Failed/success labels for better visibility.
* Displayed error message on hover and in the popup to simplify the interface and UX in the log section.
* Updated Feedback SDK to the latest version
**FIXES**
* Fix: Pagination was getting reset on resending emails.
= 2.5.7 - 2023-06-21 =
**IMPROVEMENTS**
* Enhance code quality and strengthen security measures.
= 2.5.6 - 2023-06-08 =
**FIXES**
* Critical error was being thrown when reseting the plugin.
= 2.5.5 - 2023-05-29 =
**FIXES**
* Some of logs were overriding log page CSS.
**IMPROVEMENTS**
* Added title on log status for better user experience.
* Translation string improvement.
= 2.5.4 - 2023-05-24 =
**FIXES**
* Logs were not created in some cases.
= 2.5.3 2023-05-16 =
**FIXES**
* Fixed E_WARNING appearing on activation in some cases.
= 2.5.2 - 2023-05-12 =
**FIXES**
* Fixed the issue where users were getting stuck in the initial migration stage.
**IMPROVEMENTS**
* On completing the migration process, limit the notice to the logs section only to delete old logs.
* Added an option to disable migration notifications for seven days on clicking the cross icon on notice.
* Added a new feature that allows users to revert a migration. This way, they can retry the migration process or switch back to the old logs interface if required.
* Added an option to skip the migration process for those who do not wish to transfer their old logs and want to switch to the new interface.
* Added permission check before creating/writing error log during migration.
= 2.5.1 - 2023-05-10 =
**NEW**
* Added a link to learn more about migration.
* Added a condition to initiate the migration and logging only if the new custom table exists.
**IMPROVEMENTS**
* Improved database migration process to handle potential failures.
= 2.5.0 - 2023-05-09 =
**NEW**
* Introducing a new log section that is both lightweight and optimized, capable of accommodating millions of entries.
* Added a migration wizard to help move existing logs to new custom tables from the old version.
= 2.4.9 - 2023-04-27 =
**FIXES**
* Uncaught Error: Cannot use object of type WP_Error as array
* Fixed deprecation notice for PHP Version > 8.0
**IMPROVEMENTS**
* Added condition for notice on how to fix broken emails
= 2.4.8 - 2023-04-17 =
**Bug Fix**
* Fixed deprecated functions on Php 8.x
= 2.4.7 - 2023-04-10 =
**Improvements**
* Updated feedback SDK to latest version
* Added PHP 8.1 compatibility
= 2.4.6 - 2023-03-27 =
**Bug Fixes**
* Added new option in the settings to fix broken emails.
= 2.4.5 - 2023-03-14 =
**Bug Fixes**
* Reverted the fix to support minor PHP versions, impacting some other PHP versions.
* NEW Filter post_smtp_incompatible_php added to fix the compatibility of minor PHP versions.
= 2.4.4 - 2023-03-08 =
**Bug Fixes**
* Resolved an issue where warnings were generated due to an array to string conversion.
* Fixed a problem where CC and BCC recipients were not properly added when using SendInBlue.
* Addressed an issue where multiple recipients using SendInBlue were receiving emails individually instead of as a group.
* Fixed an email formatting issue that occurred in certain PHP versions.
* Corrected an issue where the friendly name feature was not functioning properly with SendInBlue.
= 2.4.3 - 2023-02-27 =
**Bug Fixes**
* Fix - Code 400 error appearing in some cases for SendGrid with cc headers
= 2.4.2 - 2023-02-24 =
**Bug Fixes**
* Email header request issue fixed for MailGun
* Email attachment issue is fixed in SendGrid
= 2.4.1 - 2023-02-22 =
**Bug Fixes**
* Fixed parse error on Php 7.2
= 2.4 - 2023-02-21 =
**Improvements**
* Replaced Mandrill SDK with Endpoints
* Replaced SendGrid SDK with Endpoints
= 2.3.2 - 2023-01-06 =
**Bug Fixes**
* Fixed error related to Reply-To appearing in some cases.
= 2.3.1 - 2023-01-05 =
**Bug Fixes**
* Fixed issues appearing in PostmanLogFields.php
* Emails were getting broken in some cases
= 2.3 - 2023-01-03 =
**Bug Fixes**
* PHP errors appear in ajax requests in some cases.
* Fixed comma breaking the From name in the log section
* Reply-to Header not being added in some instances (Reported by @pierrehooker)
**Improvements**
* Updated sender header as per RFC-2822
* Added PHP 8 Compatibility
* Updated Google API SDK
* Replaced MailGun SDK with endpoints
* Replaced SendInBlue SDK with Endpoints
= 2.2.3 - 2022-12-27 =
**FIX**
* Bug Fix - Support menu was disappearing in some cases
= 2.2.2 - 2022-12-19 =
**FIX**
* SendGrid was missing on wizard
* PHP Warnings
= 2.2.1 - 2022-12-13 =
**FIX**
* Email template HTML was broken
= 2.2 - 2022-12-08 =
* **NEW**
* Added New Socket/ Email Service Postmark
* Added New Socket/ Email Service SparkPost
* **IMPROVEMENTS**
* SSRF Prevention
* SQL Warning Removed
* MailGun SDK Updated to Latest Version
* Compatibility with BackupBuddy added
* **FIXES**
* Multisite Plugin Update
* Additional Headers were not saved properly in some cases
* Import Button was not working in some cases
= 2.1.10 - 2022-10-10 =
* **FIXES**
* Avoid redirection to wizard on activation
* Issue in resend emails
* Made backend setting fields visible
* **IMPROVEMENTS**
* Email host message
* Sendgrid message id to prevent spam emails
= 2.1.9 - 2022-09-9 =
* **FIX**
* User Compatibility Fix
* Unauthorized error on wizard
= 2.1.8 - 2022-09-5 =
* **FIX**
* Php warnings
= 2.1.7 - 2022-08-30 =
* **FIX**
* Server side request forgery
= 2.1.6 - 2022-08-29 =
* **FIX**
* Server side request forgery
= 2.1.5 - 2022-08-25 =
* **FIX**
* Updated email header to prevent email from being SPAM
= 2.1.4 - 2022-08-18 =
* **NEW**
* Redirect the user to the setup wizard on activating the Plugin
* Added action hook, "post_smtp_before_reset_plugin" to add an event before resetting plugin
* Added action hook, "post_smtp_after_reset_plugin" to add an event after resetting plugin
* Added notice to Grant Access after getting done with the wizard step to improve the UX
* **FIXES**
* Tweaks for PHP Version 8+ compatibility
* Freemius Language FIX
* Security Fix to avoid XSS from admin settings
* Mailster support updated for the latest version (thanks to @evrpress)
* Typo fix: defualt to default (thanks to @jsilvermist)
* Updated email header to prevent email from being SPAM
= 2.1.3- 2022-07-1 =
* **FIX**
* PHP Version Compatibility.
= 2.1.2- 2022-06-30 =
* **NEW**
* Integrated SDK for Feedback and support.
* Added "Start wizard" button in setup notification to optimize UX for the end-user.
* **Improved**
Removed unused code
* **FIX**
Less secure App Banner appearing in non-appropriate cases
= 2.1.1.1 - 2022-06-15 =
* **FIX**
* Sendinblue email header
= 2.1.1 - 2022-06-09 =
* **FIX**
* PHP Version Compatibility.
= 2.1 - 2022-06-09 =
* **NEW**
* All New UI
* Sendinblue API Integration
= 2.0.27 - 2022-05-19 =
Add notice about Google Less Secure App.
= 2.0.26 - 2022-04-22 =
* **Bug Fixes**
* Email header was broken in some cases.
* **Improvements**
* Minor UI improvement.
* `llc` Hostname added in ZendMail.
= 2.0.25 - 2022-04-06 =
* **Bug Fixes**
* WP 5.9 Compatibility Ballon UI issue.
* Uncaught Error: Class PostmanAdminController not found.
* Ajax error appearing due to Google API depreciated function.
* **Improvements**
* Code Optimization.
* MIME version added to test mails to prevent emails from spam.
* NEW Filter `postman_test_email_args` added to modify test email arguments.
* NEW Action `wp_mail_succeeded` added to exectue on every success email delivery.
= 2.0.24 - 2022-02-13
* Update: THE FUTURE OF Post SMTP - https://postmansmtp.com/the-future-of-post-smtp/
= 2.0.23 - 2021-04-22
* Fixed: `WP_Scripts::localize called incorrectly` message.
= 2.0.22 - 2021-02-14
* Update: Chrome extension URL change
* Fixed: Double save when extension save to option
= 2.0.21 - 2021-02-11
* Fixed: Security issue - nonce validation.
* Fixed: Class PostmanViewController not found
* New: New wp-config.php constant to disable the email logger = `POST_SMTP_CORE_MAIL_LOG`.
= 2.0.20 - 2021-01-19
* Fixed: All reported office 365 issues.
* New: Add link to Amazon SES Extension
= 2.0.19 - 2021-01-19
* Fixed: All reported office 365 issues.
* New: Add link to Amazon SES Extension
= 2.0.18 - 2021-01-17
* New: Plugin Extensions
= 2.0.16 - 2020-12-13
* Update: General Info
= 2.0.15 - 2020-08-12
* Fixed: WordPress 5.5 compatibility (stable)
= 2.0.14 - 2020-08-11
* Removed: WordPress 5.5 compatibility (bug)
= 2.0.13 - 2020-08-11
* Fixed: WordPress 5.5 compatibility
* Fixed: Email log filtering
* Fixed: Pushover notifications
* New: Suggest solution for email delivery errors
= 2.0.12 - 2020-05-18
* Updated: Readme file info
= 2.0.11 - 2020-02-25
* Fixed: Slack notifications
= 2.0.10 - 2020-01-21
* Fixed: HTML content type
* Fixed: Sendgrid crash when has duplicates recipients (bypass, Sendgrid issue).
* Fixed: Few OAuth undefined notifications
* Fixed: Duplicate Emails - When you have notify and confirm (Ninja forms, etc..)
* Fixed: Logs wp_error convert
= 2.0.9 - 2020-01-13
* Fixed: Notify on error bug - crash site
* Fixed: From header
= 2.0.8 - 2020-01-12
* Updated: Reply-To header bug
= 2.0.7 - 2020-01-12
* Updated: Improve PHPMailer method.
* Updated: Bug fixes.
= 2.0.6 - 2019-10-08
* Updated: Bug fixes.
= 2.0.5 - 2019-09-26
* New: You can now export logs to CSV.
* Updated: Few notifications errors, and minor improvements.
= 2.0.4 - 2019-08-27
* Updated: More security.
= 2.0.3 - 2019-08-21
* Fixed: A few security issues.
= 2.0.2 - 2019-05-19
* Fixed: Sendgrid code fix.
* Fixed: Default method (nothing configured) will use the default mail on the server and not SMTP.
= 2.0.1 - 2019-05-15
* New: Mailer Type - Added an option to send without overwrite the 'wp_mail' function, better compability to WordPress delivery. hopefully will be the default in the future.
* Updated: Sendgrid API was upgraded and rewritten to the new version.
* Fixed: Message-Id header was missing on SMTP
* Fixed: Email logger optimization - better query for large amount of records.
* Fixed: The localization was fixed to match translate.wordpress.org translation system ( Thanks to Niels de Blaauw from Level-Level ).
* Fixed: Code and optimization ( Thanks to Niels de Blaauw from Level-Level ).
= 1.9.8 - 2019-02-18
* New: a new from field to the fallback - Can't trust the username as "from" value (email address).
= 1.9.7 - 2019-02-17
* New: Fallback Feature - Configure a backup SMTP when emails are failing.
* New: WordPress Multisite compability - with global settings.
* New: Email Log capability - give other user cheking the logs.
* Fixed: compatibility with mailster plugin
* Fixed: Mandrill exception bug - Thanks to Niels de Blaauw from Level-Level
= 1.9.6 - 2019-01-29
* Added support for our new chrome notification extension.
* few fixes
= 1.9.5 - 2018-10-02
* Added support for Mailgun Europe region.
* Replace "buggy" mime_content_type php function
= 1.9.4 - 2018-08-03
The most stupid idea ever remove (auto security select)
= 1.9.3 - 2018-07-26
Removed auto configure for port 25 (can be TLS)
= 1.9.2 - 2018-07-23
Removed deprecated functions from 7.2 + comment unready feature
= 1.9.1 - 2018-07-22
Syntx stupid mistake
= 1.9.0 - 2018-07-22
* Better support for secure delivery
* Support for constants auth (inside wp-config), check the detailes our [Blog](https://postmansmtp.com/post-smtp-1-9-0-better-support-for-secure-delivery)
* Automatic encryption select base on the port input - 25, 465, 587, 2525
= 1.8.9 - 2018-04-24
* Sendgrid bug
= 1.8.8 - 2018-04-24
* file added to svn - contactform7
= 1.8.6 - 2018-04-24
* Fix lockfile erros
* Contact form 7 integration
* PHP 5.6 requirement
= 1.8.5 - 2018-04-19
* Remove Beta Woocommerce integration
* Better check for WPML less then version 3.9
= 1.8.4 - 2018-04-18
* New: Multiple notification options to failed emails
* Upgrade: The Gmail code was upgraded and code change to support large attachments
* Add: Fix release lock file error
* Change: "Not configured..." message is now dismissible
= 1.8.3 - 2018-03-21
* Fix: SendGrid API Call Structure (The previous try didn't work)
= 1.8.2 - 2018-03-21
* Fix: SendGrid API Call Structure
= 1.8.1 - 2018-03-20
* New: Sendgrid API & Client Version 6
* New: Add email log 'send to' column
* Fix: fallback emails on hosting require the '-f' parameter
* Fix: Using hostname insted of an IP
* Fix: Remove mailgun test folder ( virustotal issue )
* Fix: Additional bugs collected from support tickets.
* Added: added filters to from_name and from_email filters (local connection)
* change hostname extrect logic
= 1.8 - 2017-12-24
* New: Mailgun API integration
* New: New filter controls
* New: WPML conflict fix
* Fix: Minor old bugs
= 1.7.10 - 2017-11-21 ==
* Fixed: bug while detecting transcript error
= 1.7.9 - 2017-11-20
* Fixed: misspled false
* Fixed: feedback form
* Fixed: Some localization strings
* Removed: deprecated function
* New: Option to input emails when resend email
* Added: explain message on email log filter
= 1.7.8 - 2017-11-17
* = Menu Items grouping =
* Fixed: IP detection error in some web hosts
* Fixed: Link open in new page attribute = _blank
* Fixed: Replace deprecated PHP 7 functions.
* Updated: Validator TLD's list
* Added: Email log date and search filter.
* Added: Alert on sending error (Fallback to local mail)
* Added: Email body preview (not raw)
= 1.7.7 - 2017-10-17
* Fixed: Error sending files with sendgrid
* Fixed: Wrong attachments format in Mandrill
* Fixed: Wrong Sender Header in Mandrill
= 1.7.6 - 2017-10-17
* Missing sendgrid files
* Fixed: Localization slug
= 1.7.5 - 2017-10-07 =
* Fixed: security issue (XSS)
* Fixed: Small bug with Google API
= 1.7.2 - 2015-11-08 =
* [[Ticket](https://wordpress.org/support/topic/having-troble-in-17-while-set-content-type-to-texthtml?replies=8)] - v1.7 ignores the content-type header set in the Additional Headers. Fixed.
* [[Ticket](https://wordpress.org/support/topic/do-not-network-activate-17-on-multisite?replies=15)] - Fixed an issue where v1.7 admin screens crash for non-admin users when Post is not configured. Fixed a multiste issue where v1.7 site admins lose access to their Post settings screen. Special thank-you to Domi2015 for giving me access for testing! :)
* Localized jQuery Validation messages
* Localized MyMail messages
* Put the local translation files back, as WordPress on-line translations do not work as advertised
= 1.7.1 - 2015-11-05 =
* [[Ticket](https://wordpress.org/support/topic/cant-send-an-email-using-optimizepress?replies=8)] - the Optimizepress plugin calls wp_mail before the WordPress init hook, before Post is fully initialized, so I made a change to accomodate this behavior
* [[Ticket](https://wordpress.org/support/topic/v17?replies=13)] - v1.7 admin screen may become inaccessible after upgrading. Fixed.
* [[Ticket](https://wordpress.org/support/topic/inboundnow-html-e-mail-templates-are-not-being-recognized-with-170?replies=3)] - v1.7 breaks compatibility with [WordPress Leads](https://wordpress.org/plugins/leads/). Fixed.
= 1.7.0 "Iliana" - 2015-11-03 =
* Happy Halowe'en! 30,000 installations! - 2015-10-31
* Integrated Mandrill API
* Integrated SendGrid API
* Language files have been removed from the plugin as [translations are now performed on-line](https://translate.wordpress.org/projects/wp-plugins/Post-smtp). If you are a non-English speaker please constribute!
* Post commandeers email when activated and sends using the WordPress default of localhost:25 - this is for people who want to use it to diagnose email problems without configuring SMTP
* Re-send failed e-mails from the Email Log screen
* Added an internal 'manage_Post_smtp' capability for advanced management with, for example, [User Role Editor](https://wordpress.org/plugins/user-role-editor/)
* [[Ticket](https://wordpress.org/support/topic/exportimport-settings-4?replies=2)][[Ticket](https://wordpress.org/support/topic/export-import-configuration?replies=1)] Added an import/export tab to the Advanced Configuration screen for those who want to duplicate settings between sites.
* [[Ticket](https://wordpress.org/support/topic/gateway-error-invalid-envelope-from-mail-address?replies=9#post-7528068)] Added option to disable e-mail address validation
* [[Ticket](https://wordpress.org/support/topic/error-665?replies=7#post-7581776)] Fix for fatal error when using a non-administrator in the admin menu.
= 1.6.24 - 2015-09-10 =
* 20,000 installations! - 2015-09-09
* Translated into Greek, thank-you Michael Kotsarinis!
* Diagnostic Test displays all the wp_mail-related hooks of active plugins and themes
* When validating e-mail addresses, Post will disclose which field has a validation issue in the error message
* Default log entries bumped from 10 to 250
* [[Ticket](https://wordpress.org/support/topic/for-your-consideration-backup-email-notification?replies=5)] Added nasty fake input field hack to prevent browsers from autofilling username/password fields.
* [[Ticket](https://wordpress.org/support/topic/cf7-godaddy-emails-not-delivered?replies=5)] Added a warning to the Email Log for emails that have an empty subject line