Post SMTP Mailer/Email Log - Version 2.0.12

Version Description

  • 2020-05-18
  • Updated: Readme file info
Download this release

Release Info

Developer yehudah
Plugin Icon 128x128 Post SMTP Mailer/Email Log
Version 2.0.12
Comparing to
See all releases

Code changes from version 2.0.11 to 2.0.12

Postman/Extensions/Admin/PostmanAdminView.php CHANGED
@@ -3,6 +3,8 @@
3
  <style>
4
  .form-table .row {
5
  display: flex;
 
 
6
  }
7
 
8
  .form-table .row .flex > *:not(:last-child) {
3
  <style>
4
  .form-table .row {
5
  display: flex;
6
+ justify-content: space-between;
7
+ margin-bottom: 15px;
8
  }
9
 
10
  .form-table .row .flex > *:not(:last-child) {
Postman/Extensions/Core/Notifications/PostmanSlackNotify.php CHANGED
@@ -2,6 +2,7 @@
2
  if ( ! defined( 'ABSPATH' ) ) {
3
  exit; // Exit if accessed directly
4
  }
 
5
  class PostmanSlackNotify implements Postman_Notify {
6
 
7
  public function send_message($message)
2
  if ( ! defined( 'ABSPATH' ) ) {
3
  exit; // Exit if accessed directly
4
  }
5
+
6
  class PostmanSlackNotify implements Postman_Notify {
7
 
8
  public function send_message($message)
Postman/Postman-Email-Log/PostmanEmailLogController.php CHANGED
@@ -360,6 +360,7 @@ class PostmanEmailLogController {
360
  ) );
361
  }
362
  }
 
363
  function postman_email_log_enqueue_resources() {
364
  $pluginData = apply_filters( 'postman_get_plugin_metadata', null );
365
  wp_register_style( 'postman_email_log', plugins_url( 'style/postman-email-log.css', $this->rootPluginFilenameAndPath ), null, $pluginData ['version'] );
360
  ) );
361
  }
362
  }
363
+
364
  function postman_email_log_enqueue_resources() {
365
  $pluginData = apply_filters( 'postman_get_plugin_metadata', null );
366
  wp_register_style( 'postman_email_log', plugins_url( 'style/postman-email-log.css', $this->rootPluginFilenameAndPath ), null, $pluginData ['version'] );
Postman/PostmanViewController.php CHANGED
@@ -379,7 +379,8 @@ if ( ! class_exists( 'PostmanViewController' ) ) {
379
  printf( '<li><a href="%s" class="welcome-icon run-port-test">%s</a></li>', $this->getPageUrl( PostmanDiagnosticTestController::DIAGNOSTICS_SLUG ), __( 'Diagnostic Test', 'post-smtp' ) );
380
  printf( '<li><a href="%s" data-security="%s" class="welcome-icon release-lock-file">%s</a></li>', '#', wp_create_nonce( "postman" ), __( 'Release Lock File Error', 'post-smtp' ) );
381
  printf( '<li><a href="https://wordpress.org/support/plugin/post-smtp/" class="welcome-icon postman_support">%s</a></li>', __( 'Online Support', 'post-smtp' ) );
382
- printf( '<li><img class="align-middle" src="' . plugins_url( 'style/images/new.gif', dirname( __DIR__ ) . '/postman-smtp.php' ) . '"><a target="blank" class="align-middle" href="https://postmansmtp.com/category/guides/" class="welcome-icon postman_guides">%s</a></li>', __( 'Guides', 'post-smtp' ) );
 
383
  print '</ul></div></div></div></div>';
384
  ?>
385
  </div>
379
  printf( '<li><a href="%s" class="welcome-icon run-port-test">%s</a></li>', $this->getPageUrl( PostmanDiagnosticTestController::DIAGNOSTICS_SLUG ), __( 'Diagnostic Test', 'post-smtp' ) );
380
  printf( '<li><a href="%s" data-security="%s" class="welcome-icon release-lock-file">%s</a></li>', '#', wp_create_nonce( "postman" ), __( 'Release Lock File Error', 'post-smtp' ) );
381
  printf( '<li><a href="https://wordpress.org/support/plugin/post-smtp/" class="welcome-icon postman_support">%s</a></li>', __( 'Online Support', 'post-smtp' ) );
382
+ printf( '<li><a target="blank" class="align-middle" href="https://postmansmtp.com/category/guides/" class="welcome-icon postman_guides">%s</a></li>', __( 'Guides', 'post-smtp' ) );
383
+ printf( '<li><img class="align-middle" src="' . plugins_url( 'style/images/new.gif', dirname( __DIR__ ) . '/postman-smtp.php' ) . '"><a target="blank" class="align-middle" href="https://www.facebook.com/groups/post.smtp" class="welcome-icon postman_guides">%s</a></li>', __( 'Facebook Group', 'post-smtp' ) );
384
  print '</ul></div></div></div></div>';
385
  ?>
386
  </div>
postman-smtp.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) {
6
  * Plugin Name: Post SMTP
7
  * Plugin URI: https://wordpress.org/plugins/post-smtp/
8
  * Description: Email not reliable? Post SMTP is the first and only WordPress SMTP plugin to implement OAuth 2.0 for Gmail, Hotmail and Yahoo Mail. Setup is a breeze with the Configuration Wizard and integrated Port Tester. Enjoy worry-free delivery even if your password changes!
9
- * Version: 2.0.11
10
  * Author: Yehuda Hassine
11
  * Text Domain: post-smtp
12
  * Author URI: https://postmansmtp.com
@@ -26,15 +26,6 @@ if ( ! defined( 'ABSPATH' ) ) {
26
  // filter print_postman_status: apply this filter to print the human-readable plugin state
27
  // filter postman_module: implement this filter and return the instance of the module
28
  // filter postman_register_modules: apply this filter to register the module
29
- // TODO v1.7
30
- // -- Postmark API http://plugins.svn.wordpress.org/postmark-approved-wordpress-plugin/trunk/postmark.php
31
- // -- Amazon SES API http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-api.html
32
- // TODO v2.0
33
- // -- PHP7 compatibility
34
- // -- class autoloading
35
- // -- Add dismiss option for "unconfigured message" .. for multisites
36
- // -- customize sent-mail icon WordPress dashboard
37
- // -- multiple mailbox support
38
 
39
 
40
  /**
@@ -44,7 +35,7 @@ if ( ! defined( 'ABSPATH' ) ) {
44
  define( 'POST_SMTP_BASE', __FILE__ );
45
  define( 'POST_SMTP_PATH', __DIR__ );
46
  define( 'POST_SMTP_URL', plugins_url('', POST_SMTP_BASE ) );
47
- define( 'POST_SMTP_VER', '2.0.11' );
48
  define( 'POST_SMTP_SHOW_RELEASE_MESSAGE', true );
49
  define( 'POST_SMTP_RELEASE_MESSAGE', "I have released a new Google Analytics AIO plugin, if you liked it please leave a review." );
50
  define( 'POST_SMTP_RELEASE_URL', 'https://wordpress.org/plugins/metrics-query/' );
6
  * Plugin Name: Post SMTP
7
  * Plugin URI: https://wordpress.org/plugins/post-smtp/
8
  * Description: Email not reliable? Post SMTP is the first and only WordPress SMTP plugin to implement OAuth 2.0 for Gmail, Hotmail and Yahoo Mail. Setup is a breeze with the Configuration Wizard and integrated Port Tester. Enjoy worry-free delivery even if your password changes!
9
+ * Version: 2.0.12
10
  * Author: Yehuda Hassine
11
  * Text Domain: post-smtp
12
  * Author URI: https://postmansmtp.com
26
  // filter print_postman_status: apply this filter to print the human-readable plugin state
27
  // filter postman_module: implement this filter and return the instance of the module
28
  // filter postman_register_modules: apply this filter to register the module
 
 
 
 
 
 
 
 
 
29
 
30
 
31
  /**
35
  define( 'POST_SMTP_BASE', __FILE__ );
36
  define( 'POST_SMTP_PATH', __DIR__ );
37
  define( 'POST_SMTP_URL', plugins_url('', POST_SMTP_BASE ) );
38
+ define( 'POST_SMTP_VER', '2.0.12' );
39
  define( 'POST_SMTP_SHOW_RELEASE_MESSAGE', true );
40
  define( 'POST_SMTP_RELEASE_MESSAGE', "I have released a new Google Analytics AIO plugin, if you liked it please leave a review." );
41
  define( 'POST_SMTP_RELEASE_URL', 'https://wordpress.org/plugins/metrics-query/' );
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: yehudah
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=yehuda@myinbox.in&item_name=Donation+for+PostSMTP
4
  Tags: postman smtp, postman, smtp, email, mail, mailer, email log, oauth2, gmail, google apps, hotmail, yahoo, mandrill api, sendgrid api, elastic email, office365, mailgun
5
  Requires at least: 3.9
6
- Tested up to: 5.3.2
7
- Stable tag: 2.0.11
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -139,9 +139,6 @@ Post SMTP (aka Postman SMTP) plugin was originally created by Jason Hendriks.
139
  1. Choose the 'Request OAuth2 Permission' link and follow the instructions.
140
  1. Send yourself a test email.
141
 
142
- > Post is developed on OS X with PHP 5.5.14 and Apache 2.4.9. Post is tested in a [Red Hat OpenShift](http://www.openshift.com/) environment with PHP 5.3.3 and Apache 2.2.15 with Gmail, Hotmail and Yahoo Mail (US). Post is tested with [mailtrap.io](http://mailtrap.io).
143
-
144
-
145
 
146
  == Frequently Asked Questions ==
147
 
@@ -149,10 +146,6 @@ Post SMTP (aka Postman SMTP) plugin was originally created by Jason Hendriks.
149
  From 2015-11-08 more or less I can say that Jason the original author stoped maintain the plugin.
150
  He may still answered some support tickets, but nothing more.
151
 
152
- You can read more about the "story" here:
153
- https://postmansmtp.com/#story
154
-
155
-
156
  = What is OAuth 2.0? =
157
 
158
  A modern replacement for traditional password-based authentication. Post supports the OAuth 2.0 implementations of all three major e-mail providers: Gmail, Hotmail and Yahoo Mail.
@@ -205,7 +198,6 @@ Go to [Configure Post SMTP with Gmail\Gsuite OAuth](https://postmansmtp.com/how-
205
  * 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.
206
 
207
 
208
-
209
  == Grant OAuth permission error messages ==
210
 
211
  Please note that the Client ID and Client Secret fields are NOT for your username and password. They are for OAuth Credentials only.
@@ -269,8 +261,6 @@ To avoid being flagged as spam, you need to prove your email isn't forged. On a
269
  * If you use a custom domain name for email, add a DKIM record to your DNS zone file and upload your Domain Key (a digital signature) to, for example [Google]((https://support.google.com/a/answer/174124?hl=en))
270
 
271
 
272
-
273
-
274
  == Screenshots ==
275
 
276
  1. WordPress Dashboard showing both the Post widget and At a Glance widget
@@ -291,6 +281,9 @@ To avoid being flagged as spam, you need to prove your email isn't forged. On a
291
 
292
  == Changelog ==
293
 
 
 
 
294
  = 2.0.11 - 2020-02-25
295
  * Fixed: Slack notifications
296
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=yehuda@myinbox.in&item_name=Donation+for+PostSMTP
4
  Tags: postman smtp, postman, smtp, email, mail, mailer, email log, oauth2, gmail, google apps, hotmail, yahoo, mandrill api, sendgrid api, elastic email, office365, mailgun
5
  Requires at least: 3.9
6
+ Tested up to: 5.4.1
7
+ Stable tag: 2.0.12
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
139
  1. Choose the 'Request OAuth2 Permission' link and follow the instructions.
140
  1. Send yourself a test email.
141
 
 
 
 
142
 
143
  == Frequently Asked Questions ==
144
 
146
  From 2015-11-08 more or less I can say that Jason the original author stoped maintain the plugin.
147
  He may still answered some support tickets, but nothing more.
148
 
 
 
 
 
149
  = What is OAuth 2.0? =
150
 
151
  A modern replacement for traditional password-based authentication. Post supports the OAuth 2.0 implementations of all three major e-mail providers: Gmail, Hotmail and Yahoo Mail.
198
  * 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.
199
 
200
 
 
201
  == Grant OAuth permission error messages ==
202
 
203
  Please note that the Client ID and Client Secret fields are NOT for your username and password. They are for OAuth Credentials only.
261
  * If you use a custom domain name for email, add a DKIM record to your DNS zone file and upload your Domain Key (a digital signature) to, for example [Google]((https://support.google.com/a/answer/174124?hl=en))
262
 
263
 
 
 
264
  == Screenshots ==
265
 
266
  1. WordPress Dashboard showing both the Post widget and At a Glance widget
281
 
282
  == Changelog ==
283
 
284
+ = 2.0.12 - 2020-05-18
285
+ * Updated: Readme file info
286
+
287
  = 2.0.11 - 2020-02-25
288
  * Fixed: Slack notifications
289