diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2020-06-20 21:39:39 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2020-06-20 21:39:39 +0000 |
commit | 53b2035def91dc0fe6d8f68e4a34aca2acc79ec8 (patch) | |
tree | 03e818494b3390d3e7ed4aedac0a50f0b722f0a3 /Postman/Postman.php | |
parent | 67430a4a94c041c57cb4043fcd05c85365ee17f5 (diff) | |
download | Post-SMTP-53b2035def91dc0fe6d8f68e4a34aca2acc79ec8.zip |
Email log improvements: Solution column, filter.
Some text clarify.
Diffstat (limited to 'Postman/Postman.php')
-rw-r--r-- | Postman/Postman.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Postman/Postman.php b/Postman/Postman.php index 643431d..f47fc3b 100644 --- a/Postman/Postman.php +++ b/Postman/Postman.php @@ -97,8 +97,7 @@ class Postman { } // register the email transports - $this->registerTransports( $rootPluginFilenameAndPath ); - + // store an instance of the WpMailBinder $this->wpMailBinder = PostmanWpMailBinder::getInstance(); @@ -188,7 +187,10 @@ class Postman { */ public function on_plugins_loaded() { - PostmanLicenseManager::get_instance()->init(); + PostmanLicenseManager::get_instance()->init(); + + // register the email transports + $this->registerTransports( $this->rootPluginFilenameAndPath ); // load the text domain $this->loadTextDomain(); @@ -370,8 +372,8 @@ class Postman { <p style="font-size: 18px; font-weight: bold;">Please notice</p> <p style="font-size: 14px; line-height: 1.7;"> <?php _e('Post SMTP v2 includes and new feature called: <b>Mailer Type</b>.', 'post-smtp' ); ?><br> - <?php _e('I highly recommend to change and <strong>TEST</strong> Post SMTP with the value <code>PHPMailer</code>.', 'post-smtp' ); ?><br> - <?php _e('if it will not work properly you can change back to the default value: <code>PostSMTP</code>.', 'post-smtp' ); ?><br> + <?php _e('I recommend to change it and <strong>TEST</strong> Post SMTP with the value <code>PHPMailer</code>.', 'post-smtp' ); ?><br> + <?php _e('<strong>ONLY</strong> if the default mailer type is not working for you.', 'post-smtp' ); ?><br> <a target="_blank" href="<?php echo POST_SMTP_URL; ?>/style/images/mailer-type.gif"> <figure> <img width="180" src="<?php echo POST_SMTP_URL; ?>/style/images/mailer-type.gif" alt="how to set mailer type"> |