├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── assets ├── css │ ├── .gitignore │ ├── _colors.scss │ ├── _confirm.scss │ ├── _general.scss │ ├── _include-media.scss │ ├── _variables.scss │ ├── modal.css │ ├── modal.css.map │ ├── modal.min.css │ ├── modal.scss │ ├── wp-mail-logging-admin.css │ ├── wp-mail-logging-admin.css.map │ ├── wp-mail-logging-admin.min.css │ ├── wp-mail-logging-admin.scss │ ├── wp-mail-logging-product-education.css │ ├── wp-mail-logging-product-education.min.css │ ├── wp-mail-logging-product-education.scss │ ├── wp-mail-logging-smtp.css │ ├── wp-mail-logging-smtp.css.map │ ├── wp-mail-logging-smtp.min.css │ └── wp-mail-logging-smtp.scss ├── images │ ├── .gitignore │ ├── arrow-right-plain-icon.svg │ ├── arrow-right.svg │ ├── font-awesome │ │ └── exclamation-circle-solid-orange.svg │ ├── icon_resend.svg │ ├── icon_trash.svg │ ├── icon_view.svg │ ├── logo.png │ ├── logo@2x.png │ ├── plane-bg.png │ ├── plane-bg@2x.png │ ├── plus-icon.svg │ ├── prod-edu │ │ ├── archive-thumbnail.png │ │ ├── archive.png │ │ ├── reports-thumbnail.png │ │ ├── reports.png │ │ ├── single-thumbnail.png │ │ └── single.png │ ├── sep.png │ ├── smtp │ │ ├── screenshot-full.png │ │ ├── screenshot-tnail.png │ │ ├── step-1.svg │ │ ├── step-2.svg │ │ ├── step-complete.svg │ │ ├── wpmailsmtp-logo.png │ │ ├── wpmailsmtp-logo@2x.png │ │ └── zoom.svg │ └── zoom.svg ├── js │ ├── .gitignore │ ├── modal.js │ ├── modal.min.js │ ├── wp-mail-logging-admin-logs.js │ ├── wp-mail-logging-admin-logs.min.js │ ├── wp-mail-logging-admin-settings.js │ ├── wp-mail-logging-admin-settings.min.js │ ├── wp-mail-logging-admin-smtp.js │ └── wp-mail-logging-admin-smtp.min.js ├── languages │ ├── wp-mail-logging-de_DE.mo │ ├── wp-mail-logging-de_DE.po │ ├── wp-mail-logging-zh_CN.mo │ ├── wp-mail-logging-zh_CN.po │ └── wp-mail-logging.pot └── wporg │ ├── banner-772x250.jpg │ ├── icon-128x128.jpg │ ├── icon-256x256.jpg │ ├── icon-44x44.png │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ └── screenshot-4.png ├── autoload.php ├── bin ├── install-wp-tests.sh └── run-wp-tests.sh ├── composer.json ├── composer.lock ├── gulpfile.js ├── lib ├── jquery-confirm │ ├── jquery-confirm.min.css │ └── jquery-confirm.min.js ├── lity │ ├── lity.min.css │ └── lity.min.js └── vendor │ ├── brandonwamboldt │ └── wp-orm │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── src │ │ ├── Admin │ │ │ ├── AdminHelper.php │ │ │ └── ListTable.php │ │ ├── BaseModel.php │ │ ├── DefaultQueryFactory.php │ │ ├── Model │ │ │ ├── Comment.php │ │ │ ├── Page.php │ │ │ ├── Post.php │ │ │ └── User.php │ │ ├── ModelInterface.php │ │ ├── Query.php │ │ └── QueryFactory.php │ │ ├── views │ │ └── list-table.php │ │ └── wp-orm.php │ └── pimple │ └── pimple │ └── src │ ├── Container.php │ └── ServiceProviderInterface.php ├── package.json ├── phpcs.xml.dist ├── phpunit.xml ├── readme.txt ├── src ├── FS │ ├── Filesystem.php │ └── IFilesystem.php ├── IHooks.php ├── Model │ ├── DefaultMailService.php │ ├── Email_Log_Collection.php │ ├── IMailService.php │ └── WPML_Mail.php ├── Renderer │ ├── Column │ │ ├── AttachmentsColumn.php │ │ ├── ColumnFormat.php │ │ ├── ErrorColumn.php │ │ ├── EscapingColumnDecorator.php │ │ ├── GenericColumn.php │ │ ├── IColumn.php │ │ ├── SanitizedColumnDecorator.php │ │ ├── SubjectColumn.php │ │ └── TimestampColumn.php │ ├── Exception │ │ └── ColumnDoesntExistException.php │ ├── Format │ │ ├── BaseRenderer.php │ │ ├── HTMLRenderer.php │ │ ├── HeadingsRenderer.php │ │ ├── IMailRenderer.php │ │ ├── JSONRenderer.php │ │ ├── MailRendererFactory.php │ │ └── RawRenderer.php │ ├── WPML_ColumnManager.php │ ├── WPML_MailRenderer.php │ └── WPML_MailRenderer_AJAX_Handler.php ├── WPML_Attachment.php ├── WPML_DI_Container.php ├── WPML_Email_Dispatcher.php ├── WPML_Email_Log_List.php ├── WPML_Email_Resender.php ├── WPML_Hook_Remover.php ├── WPML_Init.php ├── WPML_InstallIndicator.php ├── WPML_LifeCycle.php ├── WPML_LogRotation.php ├── WPML_MailExtractor.php ├── WPML_MessageSanitizer.php ├── WPML_OptionsManager.php ├── WPML_Plugin.php ├── WPML_PrivacyController.php ├── WPML_ProductEducation.php ├── WPML_UserFeedback.php ├── WPML_Utils.php └── inc │ ├── Admin │ ├── EmailLogsTab.php │ ├── SMTPTab.php │ └── SettingsTab.php │ ├── Helpers │ ├── PluginSilentUpgrader.php │ └── PluginSilentUpgraderSkin.php │ ├── Migration │ └── Migration.php │ ├── class-install-skin.php │ └── class-wp-list-table.php ├── tests ├── helper │ ├── WPML_IntegrationTestCase.php │ └── WPMailArrayBuilder.php └── phpunit │ ├── includes │ └── bootstrap.php │ ├── integration │ ├── WPML_Hook_Remover_Test.php │ ├── WPML_IntegrationTestCase_Test.php │ ├── WPML_LogRotation_Test.php │ ├── WPML_MailRenderer_AJAX_Handler_Test.php │ ├── WPML_Plugin_Test.php │ └── test-core-settings.php │ └── unit │ ├── WPML_Attachment_Test.php │ ├── WPML_ColumnManager_Test.php │ ├── WPML_Email_Log_List_Test.php │ ├── WPML_Email_Resender_Test.php │ ├── WPML_MailExtractor_Test.php │ ├── WPML_MailRenderer_Test.php │ ├── WPML_MessageSanitizer_Test.php │ ├── WPML_Plugin_Test.php │ ├── WPML_PrivacyController_Test.php │ └── WPML_Utils_Test.php └── wp-mail-logging.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/_colors.scss -------------------------------------------------------------------------------- /assets/css/_confirm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/_confirm.scss -------------------------------------------------------------------------------- /assets/css/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/_general.scss -------------------------------------------------------------------------------- /assets/css/_include-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/_include-media.scss -------------------------------------------------------------------------------- /assets/css/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/_variables.scss -------------------------------------------------------------------------------- /assets/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/modal.css -------------------------------------------------------------------------------- /assets/css/modal.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/modal.css.map -------------------------------------------------------------------------------- /assets/css/modal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/modal.min.css -------------------------------------------------------------------------------- /assets/css/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/modal.scss -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-admin.css -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-admin.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-admin.css.map -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-admin.min.css -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-admin.scss -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-product-education.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-product-education.css -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-product-education.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-product-education.min.css -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-product-education.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-product-education.scss -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-smtp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-smtp.css -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-smtp.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-smtp.css.map -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-smtp.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-smtp.min.css -------------------------------------------------------------------------------- /assets/css/wp-mail-logging-smtp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/css/wp-mail-logging-smtp.scss -------------------------------------------------------------------------------- /assets/images/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/images/arrow-right-plain-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/arrow-right-plain-icon.svg -------------------------------------------------------------------------------- /assets/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/arrow-right.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/exclamation-circle-solid-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/font-awesome/exclamation-circle-solid-orange.svg -------------------------------------------------------------------------------- /assets/images/icon_resend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/icon_resend.svg -------------------------------------------------------------------------------- /assets/images/icon_trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/icon_trash.svg -------------------------------------------------------------------------------- /assets/images/icon_view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/icon_view.svg -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/logo@2x.png -------------------------------------------------------------------------------- /assets/images/plane-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/plane-bg.png -------------------------------------------------------------------------------- /assets/images/plane-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/plane-bg@2x.png -------------------------------------------------------------------------------- /assets/images/plus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/plus-icon.svg -------------------------------------------------------------------------------- /assets/images/prod-edu/archive-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/prod-edu/archive-thumbnail.png -------------------------------------------------------------------------------- /assets/images/prod-edu/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/prod-edu/archive.png -------------------------------------------------------------------------------- /assets/images/prod-edu/reports-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/prod-edu/reports-thumbnail.png -------------------------------------------------------------------------------- /assets/images/prod-edu/reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/prod-edu/reports.png -------------------------------------------------------------------------------- /assets/images/prod-edu/single-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/prod-edu/single-thumbnail.png -------------------------------------------------------------------------------- /assets/images/prod-edu/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/prod-edu/single.png -------------------------------------------------------------------------------- /assets/images/sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/sep.png -------------------------------------------------------------------------------- /assets/images/smtp/screenshot-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/smtp/screenshot-full.png -------------------------------------------------------------------------------- /assets/images/smtp/screenshot-tnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/smtp/screenshot-tnail.png -------------------------------------------------------------------------------- /assets/images/smtp/step-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/smtp/step-1.svg -------------------------------------------------------------------------------- /assets/images/smtp/step-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/smtp/step-2.svg -------------------------------------------------------------------------------- /assets/images/smtp/step-complete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/smtp/step-complete.svg -------------------------------------------------------------------------------- /assets/images/smtp/wpmailsmtp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/smtp/wpmailsmtp-logo.png -------------------------------------------------------------------------------- /assets/images/smtp/wpmailsmtp-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/smtp/wpmailsmtp-logo@2x.png -------------------------------------------------------------------------------- /assets/images/smtp/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/smtp/zoom.svg -------------------------------------------------------------------------------- /assets/images/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/images/zoom.svg -------------------------------------------------------------------------------- /assets/js/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/js/modal.js -------------------------------------------------------------------------------- /assets/js/modal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/js/modal.min.js -------------------------------------------------------------------------------- /assets/js/wp-mail-logging-admin-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/js/wp-mail-logging-admin-logs.js -------------------------------------------------------------------------------- /assets/js/wp-mail-logging-admin-logs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/js/wp-mail-logging-admin-logs.min.js -------------------------------------------------------------------------------- /assets/js/wp-mail-logging-admin-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/js/wp-mail-logging-admin-settings.js -------------------------------------------------------------------------------- /assets/js/wp-mail-logging-admin-settings.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/js/wp-mail-logging-admin-settings.min.js -------------------------------------------------------------------------------- /assets/js/wp-mail-logging-admin-smtp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/js/wp-mail-logging-admin-smtp.js -------------------------------------------------------------------------------- /assets/js/wp-mail-logging-admin-smtp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/js/wp-mail-logging-admin-smtp.min.js -------------------------------------------------------------------------------- /assets/languages/wp-mail-logging-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/languages/wp-mail-logging-de_DE.mo -------------------------------------------------------------------------------- /assets/languages/wp-mail-logging-de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/languages/wp-mail-logging-de_DE.po -------------------------------------------------------------------------------- /assets/languages/wp-mail-logging-zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/languages/wp-mail-logging-zh_CN.mo -------------------------------------------------------------------------------- /assets/languages/wp-mail-logging-zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/languages/wp-mail-logging-zh_CN.po -------------------------------------------------------------------------------- /assets/languages/wp-mail-logging.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/languages/wp-mail-logging.pot -------------------------------------------------------------------------------- /assets/wporg/banner-772x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/wporg/banner-772x250.jpg -------------------------------------------------------------------------------- /assets/wporg/icon-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/wporg/icon-128x128.jpg -------------------------------------------------------------------------------- /assets/wporg/icon-256x256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/wporg/icon-256x256.jpg -------------------------------------------------------------------------------- /assets/wporg/icon-44x44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/wporg/icon-44x44.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/wporg/screenshot-1.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/wporg/screenshot-2.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/wporg/screenshot-3.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/assets/wporg/screenshot-4.png -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/autoload.php -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /bin/run-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/bin/run-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/composer.lock -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/jquery-confirm/jquery-confirm.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/jquery-confirm/jquery-confirm.min.css -------------------------------------------------------------------------------- /lib/jquery-confirm/jquery-confirm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/jquery-confirm/jquery-confirm.min.js -------------------------------------------------------------------------------- /lib/lity/lity.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/lity/lity.min.css -------------------------------------------------------------------------------- /lib/lity/lity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/lity/lity.min.js -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/LICENSE.md -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/README.md -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/composer.json -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/Admin/AdminHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/Admin/AdminHelper.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/Admin/ListTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/Admin/ListTable.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/BaseModel.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/DefaultQueryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/DefaultQueryFactory.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/Model/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/Model/Comment.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/Model/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/Model/Page.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/Model/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/Model/Post.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/Model/User.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/ModelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/ModelInterface.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/Query.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/src/QueryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/src/QueryFactory.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/views/list-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/views/list-table.php -------------------------------------------------------------------------------- /lib/vendor/brandonwamboldt/wp-orm/wp-orm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/brandonwamboldt/wp-orm/wp-orm.php -------------------------------------------------------------------------------- /lib/vendor/pimple/pimple/src/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/pimple/pimple/src/Container.php -------------------------------------------------------------------------------- /lib/vendor/pimple/pimple/src/ServiceProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/lib/vendor/pimple/pimple/src/ServiceProviderInterface.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/readme.txt -------------------------------------------------------------------------------- /src/FS/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/FS/Filesystem.php -------------------------------------------------------------------------------- /src/FS/IFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/FS/IFilesystem.php -------------------------------------------------------------------------------- /src/IHooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/IHooks.php -------------------------------------------------------------------------------- /src/Model/DefaultMailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Model/DefaultMailService.php -------------------------------------------------------------------------------- /src/Model/Email_Log_Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Model/Email_Log_Collection.php -------------------------------------------------------------------------------- /src/Model/IMailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Model/IMailService.php -------------------------------------------------------------------------------- /src/Model/WPML_Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Model/WPML_Mail.php -------------------------------------------------------------------------------- /src/Renderer/Column/AttachmentsColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/AttachmentsColumn.php -------------------------------------------------------------------------------- /src/Renderer/Column/ColumnFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/ColumnFormat.php -------------------------------------------------------------------------------- /src/Renderer/Column/ErrorColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/ErrorColumn.php -------------------------------------------------------------------------------- /src/Renderer/Column/EscapingColumnDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/EscapingColumnDecorator.php -------------------------------------------------------------------------------- /src/Renderer/Column/GenericColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/GenericColumn.php -------------------------------------------------------------------------------- /src/Renderer/Column/IColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/IColumn.php -------------------------------------------------------------------------------- /src/Renderer/Column/SanitizedColumnDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/SanitizedColumnDecorator.php -------------------------------------------------------------------------------- /src/Renderer/Column/SubjectColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/SubjectColumn.php -------------------------------------------------------------------------------- /src/Renderer/Column/TimestampColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Column/TimestampColumn.php -------------------------------------------------------------------------------- /src/Renderer/Exception/ColumnDoesntExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Exception/ColumnDoesntExistException.php -------------------------------------------------------------------------------- /src/Renderer/Format/BaseRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Format/BaseRenderer.php -------------------------------------------------------------------------------- /src/Renderer/Format/HTMLRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Format/HTMLRenderer.php -------------------------------------------------------------------------------- /src/Renderer/Format/HeadingsRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Format/HeadingsRenderer.php -------------------------------------------------------------------------------- /src/Renderer/Format/IMailRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Format/IMailRenderer.php -------------------------------------------------------------------------------- /src/Renderer/Format/JSONRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Format/JSONRenderer.php -------------------------------------------------------------------------------- /src/Renderer/Format/MailRendererFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Format/MailRendererFactory.php -------------------------------------------------------------------------------- /src/Renderer/Format/RawRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/Format/RawRenderer.php -------------------------------------------------------------------------------- /src/Renderer/WPML_ColumnManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/WPML_ColumnManager.php -------------------------------------------------------------------------------- /src/Renderer/WPML_MailRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/WPML_MailRenderer.php -------------------------------------------------------------------------------- /src/Renderer/WPML_MailRenderer_AJAX_Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/Renderer/WPML_MailRenderer_AJAX_Handler.php -------------------------------------------------------------------------------- /src/WPML_Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_Attachment.php -------------------------------------------------------------------------------- /src/WPML_DI_Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_DI_Container.php -------------------------------------------------------------------------------- /src/WPML_Email_Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_Email_Dispatcher.php -------------------------------------------------------------------------------- /src/WPML_Email_Log_List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_Email_Log_List.php -------------------------------------------------------------------------------- /src/WPML_Email_Resender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_Email_Resender.php -------------------------------------------------------------------------------- /src/WPML_Hook_Remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_Hook_Remover.php -------------------------------------------------------------------------------- /src/WPML_Init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_Init.php -------------------------------------------------------------------------------- /src/WPML_InstallIndicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_InstallIndicator.php -------------------------------------------------------------------------------- /src/WPML_LifeCycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_LifeCycle.php -------------------------------------------------------------------------------- /src/WPML_LogRotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_LogRotation.php -------------------------------------------------------------------------------- /src/WPML_MailExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_MailExtractor.php -------------------------------------------------------------------------------- /src/WPML_MessageSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_MessageSanitizer.php -------------------------------------------------------------------------------- /src/WPML_OptionsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_OptionsManager.php -------------------------------------------------------------------------------- /src/WPML_Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_Plugin.php -------------------------------------------------------------------------------- /src/WPML_PrivacyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_PrivacyController.php -------------------------------------------------------------------------------- /src/WPML_ProductEducation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_ProductEducation.php -------------------------------------------------------------------------------- /src/WPML_UserFeedback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_UserFeedback.php -------------------------------------------------------------------------------- /src/WPML_Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/WPML_Utils.php -------------------------------------------------------------------------------- /src/inc/Admin/EmailLogsTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/inc/Admin/EmailLogsTab.php -------------------------------------------------------------------------------- /src/inc/Admin/SMTPTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/inc/Admin/SMTPTab.php -------------------------------------------------------------------------------- /src/inc/Admin/SettingsTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/inc/Admin/SettingsTab.php -------------------------------------------------------------------------------- /src/inc/Helpers/PluginSilentUpgrader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/inc/Helpers/PluginSilentUpgrader.php -------------------------------------------------------------------------------- /src/inc/Helpers/PluginSilentUpgraderSkin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/inc/Helpers/PluginSilentUpgraderSkin.php -------------------------------------------------------------------------------- /src/inc/Migration/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/inc/Migration/Migration.php -------------------------------------------------------------------------------- /src/inc/class-install-skin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/inc/class-install-skin.php -------------------------------------------------------------------------------- /src/inc/class-wp-list-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/src/inc/class-wp-list-table.php -------------------------------------------------------------------------------- /tests/helper/WPML_IntegrationTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/helper/WPML_IntegrationTestCase.php -------------------------------------------------------------------------------- /tests/helper/WPMailArrayBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/helper/WPMailArrayBuilder.php -------------------------------------------------------------------------------- /tests/phpunit/includes/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/includes/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit/integration/WPML_Hook_Remover_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/integration/WPML_Hook_Remover_Test.php -------------------------------------------------------------------------------- /tests/phpunit/integration/WPML_IntegrationTestCase_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/integration/WPML_IntegrationTestCase_Test.php -------------------------------------------------------------------------------- /tests/phpunit/integration/WPML_LogRotation_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/integration/WPML_LogRotation_Test.php -------------------------------------------------------------------------------- /tests/phpunit/integration/WPML_MailRenderer_AJAX_Handler_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/integration/WPML_MailRenderer_AJAX_Handler_Test.php -------------------------------------------------------------------------------- /tests/phpunit/integration/WPML_Plugin_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/integration/WPML_Plugin_Test.php -------------------------------------------------------------------------------- /tests/phpunit/integration/test-core-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/integration/test-core-settings.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_Attachment_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_Attachment_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_ColumnManager_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_ColumnManager_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_Email_Log_List_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_Email_Log_List_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_Email_Resender_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_Email_Resender_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_MailExtractor_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_MailExtractor_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_MailRenderer_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_MailRenderer_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_MessageSanitizer_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_MessageSanitizer_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_Plugin_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_Plugin_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_PrivacyController_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_PrivacyController_Test.php -------------------------------------------------------------------------------- /tests/phpunit/unit/WPML_Utils_Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/tests/phpunit/unit/WPML_Utils_Test.php -------------------------------------------------------------------------------- /wp-mail-logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/wp-mail-logging/HEAD/wp-mail-logging.php --------------------------------------------------------------------------------