diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2017-12-05 21:53:16 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2017-12-05 21:53:16 +0000 |
commit | c524cfbee8ab1d21f1f68dccc837a4c343e10efb (patch) | |
tree | b33b8a3d3eb8eac9fe6f8272f62e626ea4de0623 /Postman/Postman.php | |
parent | b4ef3ff3cc3afb96ead86e8c99437d196477cb8d (diff) | |
download | Post-SMTP-c524cfbee8ab1d21f1f68dccc837a4c343e10efb.zip |
* Welcome on activation
* email log records per page
* email logs trash all
* remove gmail hosts for non gmail host
git-svn-id: https://plugins.svn.wordpress.org/post-smtp/trunk@1781614 b8457f37-d9ea-0310-8a92-e5e31aec5664
Diffstat (limited to 'Postman/Postman.php')
-rw-r--r-- | Postman/Postman.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Postman/Postman.php b/Postman/Postman.php index 23351e7..69c23b8 100644 --- a/Postman/Postman.php +++ b/Postman/Postman.php @@ -203,6 +203,7 @@ class Postman { // load the dependencies require_once 'PostmanMessageHandler.php'; require_once 'PostmanAdminController.php'; + require_once 'Postman-Controller/PostmanWelcomeController.php'; require_once 'Postman-Controller/PostmanDashboardWidgetController.php'; require_once 'Postman-Controller/PostmanAdminPointer.php'; require_once 'Postman-Email-Log/PostmanEmailLogController.php'; @@ -215,6 +216,7 @@ class Postman { $this->messageHandler = new PostmanMessageHandler(); // create the Admin Controllers + new PostmanWelcomeController( $rootPluginFilenameAndPath ); new PostmanDashboardWidgetController( $rootPluginFilenameAndPath, $options, $authToken, $this->wpMailBinder ); new PostmanAdminController( $rootPluginFilenameAndPath, $options, $authToken, $this->messageHandler, $this->wpMailBinder ); new PostmanEmailLogController( $rootPluginFilenameAndPath ); |