├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── enhancement.md │ └── new-feature.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .husky └── pre-push ├── .npmrc ├── .nvmrc ├── LICENSE ├── README.md ├── assets ├── css │ ├── _conditional-logic.scss │ ├── _confirm.scss │ ├── _education.scss │ ├── _flyout-menu.scss │ ├── _footer.scss │ ├── _general.scss │ ├── _include-media.scss │ ├── _loader.scss │ ├── _normalize.scss │ ├── _toggle.scss │ ├── _tooltip.scss │ ├── _variables.scss │ ├── admin-bar.css │ ├── admin-bar.min.css │ ├── admin-bar.scss │ ├── admin-notifications.css │ ├── admin-notifications.min.css │ ├── admin-notifications.scss │ ├── admin-site-health.css │ ├── admin-site-health.min.css │ ├── admin-site-health.scss │ ├── dashboard-widget.css │ ├── dashboard-widget.min.css │ ├── dashboard-widget.scss │ ├── emails │ │ └── summary-report-email.css │ ├── smtp-about.css │ ├── smtp-about.min.css │ ├── smtp-about.scss │ ├── smtp-admin.css │ ├── smtp-admin.min.css │ ├── smtp-admin.scss │ ├── smtp-smart-routing.css │ ├── smtp-smart-routing.min.css │ ├── smtp-smart-routing.scss │ └── vendor │ │ ├── flatpickr.min.css │ │ ├── jquery-confirm.min.css │ │ └── lity.min.css ├── images │ ├── about │ │ ├── affiliatewp.png │ │ ├── duplicator-icon-large.png │ │ ├── edd.png │ │ ├── icon-full.svg │ │ ├── icon-none.svg │ │ ├── icon-partial.svg │ │ ├── plugin-aioseo.png │ │ ├── plugin-charitable.png │ │ ├── plugin-mi.png │ │ ├── plugin-om.png │ │ ├── plugin-pushengage.png │ │ ├── plugin-rp.png │ │ ├── plugin-seedprod.png │ │ ├── plugin-smash-balloon-facebook-feeds.png │ │ ├── plugin-smash-balloon-instagram-feeds.png │ │ ├── plugin-smash-balloon-twitter-feeds.png │ │ ├── plugin-smash-balloon-youtube-feeds.png │ │ ├── plugin-trustpulse.png │ │ ├── plugin-wpcode.png │ │ ├── plugin-wpf.png │ │ ├── searchwp.png │ │ ├── sugar-calendar.png │ │ ├── team.jpg │ │ └── wp-simple-pay.png │ ├── additional-connections │ │ ├── screenshot-01.png │ │ ├── screenshot-02.png │ │ ├── thumbnail-01.png │ │ └── thumbnail-02.png │ ├── dash-widget │ │ ├── error-icon.svg │ │ ├── smtp │ │ │ ├── delivered.svg │ │ │ ├── sent.svg │ │ │ ├── total.svg │ │ │ └── unsent.svg │ │ ├── wp │ │ │ ├── delivered.svg │ │ │ ├── sent.svg │ │ │ ├── total.svg │ │ │ └── unsent.svg │ │ └── yes-green.svg │ ├── email-reports │ │ ├── screenshot-01.png │ │ ├── screenshot-02.png │ │ ├── screenshot-03.png │ │ ├── thumbnail-01.png │ │ ├── thumbnail-02.png │ │ └── thumbnail-03.png │ ├── email │ │ ├── icon-check.png │ │ ├── illustration-success.svg │ │ ├── signature.png │ │ ├── wp-mail-smtp-whitelabel.png │ │ └── wp-mail-smtp.png │ ├── flyout-menu │ │ ├── facebook.svg │ │ ├── life-ring.svg │ │ ├── lightbulb.svg │ │ ├── mascot.svg │ │ └── star.svg │ ├── font-awesome │ │ ├── arrow-rotate-right-purple.svg │ │ ├── cancel-red.svg │ │ ├── check-circle-dark-green.svg │ │ ├── check-circle-solid-green.svg │ │ ├── clock-orange.svg │ │ ├── exclamation-circle-regular-red.svg │ │ ├── exclamation-circle-solid-orange.svg │ │ ├── exclamation-circle-solid-red.svg │ │ ├── info-circle-blue.svg │ │ └── info-circle.svg │ ├── icons │ │ ├── arrow-up.svg │ │ ├── badge-percent.svg │ │ ├── check-solid.svg │ │ ├── check.svg │ │ ├── close.svg │ │ ├── dashicons │ │ │ ├── dashicons-pdf-grey.svg │ │ │ └── dashicons-yes-alt-green.svg │ │ ├── error.svg │ │ ├── exclamation-circle.svg │ │ ├── lightbulb.svg │ │ ├── success.svg │ │ ├── warning.svg │ │ └── zoom.svg │ ├── loaders │ │ ├── loading-blue.svg │ │ ├── loading-white.svg │ │ └── loading.svg │ ├── logo-whitelabel.svg │ ├── logo.svg │ ├── logs │ │ ├── archive-thumbnail.png │ │ ├── archive.png │ │ ├── single-thumbnail.png │ │ └── single.png │ ├── menu-icon.svg │ ├── pattie.svg │ ├── pro-badge-small.svg │ ├── pro-badge.svg │ ├── providers │ │ ├── aws.svg │ │ ├── brevo.svg │ │ ├── elasticemail.svg │ │ ├── google.svg │ │ ├── mailersend.svg │ │ ├── mailgun.svg │ │ ├── mailjet.svg │ │ ├── mandrill.svg │ │ ├── microsoft.svg │ │ ├── pepipost-smtp.png │ │ ├── pepipost.png │ │ ├── php.svg │ │ ├── postmark.svg │ │ ├── resend.svg │ │ ├── sendgrid.svg │ │ ├── sendlayer.svg │ │ ├── smtp-com.svg │ │ ├── smtp.svg │ │ ├── smtp2go.svg │ │ ├── sparkpost.svg │ │ └── zoho.svg │ ├── recommended.svg │ ├── reports │ │ ├── email │ │ │ ├── icon-arrow-down.png │ │ │ ├── icon-arrow-up.png │ │ │ ├── icon-check-gray.png │ │ │ ├── icon-check.png │ │ │ ├── icon-click.png │ │ │ ├── icon-email.png │ │ │ ├── icon-error.png │ │ │ ├── icon-open.png │ │ │ ├── wp-mail-smtp-logo-dark-whitelabel.png │ │ │ ├── wp-mail-smtp-logo-dark.png │ │ │ ├── wp-mail-smtp-logo-whitelabel.png │ │ │ └── wp-mail-smtp-logo.png │ │ └── icon-note.png │ └── wp-spinner.gif ├── js │ ├── connect.js │ ├── connect.min.js │ ├── smtp-about.js │ ├── smtp-about.min.js │ ├── smtp-admin-notices.js │ ├── smtp-admin-notices.min.js │ ├── smtp-admin.js │ ├── smtp-admin.min.js │ ├── smtp-dashboard-widget.js │ ├── smtp-dashboard-widget.min.js │ ├── smtp-notifications.js │ ├── smtp-notifications.min.js │ ├── smtp-tools-debug-events.js │ ├── smtp-tools-debug-events.min.js │ └── vendor │ │ ├── chart.min.js │ │ ├── chartjs-adapter-moment.min.js │ │ ├── flatpickr.min.js │ │ ├── jquery-confirm.min.js │ │ ├── jquery.matchHeight.js │ │ ├── jquery.matchHeight.min.js │ │ └── lity.min.js ├── languages │ ├── wp-mail-smtp-vue.php │ └── wp-mail-smtp.pot ├── vue │ ├── css │ │ ├── wizard.min.css │ │ └── wizard.rtl.min.css │ ├── img │ │ ├── amazonses.svg │ │ ├── arrow.svg │ │ ├── brevo.svg │ │ ├── check-circle-solid-white.svg │ │ ├── check-circle-solid.svg │ │ ├── check-solid.svg │ │ ├── chevron-down-solid-grey.svg │ │ ├── copy-solid.svg │ │ ├── elasticemail.svg │ │ ├── exclamation-circle-solid.svg │ │ ├── gmail-sign-in-btn.svg │ │ ├── gmail.svg │ │ ├── info-circle-solid.svg │ │ ├── loading-blue.svg │ │ ├── loading-pattie.svg │ │ ├── loading-white.svg │ │ ├── loading.svg │ │ ├── lock-solid.svg │ │ ├── logo.svg │ │ ├── long-arrow-alt-left-regular-grey.svg │ │ ├── long-arrow-alt-left-regular.svg │ │ ├── long-arrow-alt-right-regular-white.svg │ │ ├── long-arrow-alt-right-regular.svg │ │ ├── mailersend.svg │ │ ├── mailgun.svg │ │ ├── mailjet.svg │ │ ├── mandrill.svg │ │ ├── outlook-sign-in-btn.svg │ │ ├── outlook.svg │ │ ├── postmark.svg │ │ ├── pro-badge.svg │ │ ├── question-circle-solid.svg │ │ ├── resend.svg │ │ ├── sendgrid.svg │ │ ├── sendlayer.svg │ │ ├── smtp.svg │ │ ├── smtp2go.svg │ │ ├── smtpcom.svg │ │ ├── sparkpost.svg │ │ ├── star-solid.svg │ │ ├── thumbs-down-hover.svg │ │ ├── thumbs-down.svg │ │ ├── thumbs-up-hover.svg │ │ ├── thumbs-up.svg │ │ ├── times-solid-grey.svg │ │ ├── times-solid.svg │ │ ├── working.svg │ │ └── zoho.svg │ └── js │ │ ├── chunk-vendors.min.js │ │ └── wizard.min.js └── wporg │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── blueprints │ └── blueprint.json │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.png │ ├── screenshot-10.png │ ├── screenshot-11.png │ ├── screenshot-12.png │ ├── screenshot-13.png │ ├── screenshot-14.png │ ├── screenshot-15.png │ ├── screenshot-16.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ ├── screenshot-5.png │ ├── screenshot-6.png │ ├── screenshot-7.png │ ├── screenshot-8.png │ └── screenshot-9.png ├── composer.json ├── gulpfile.mjs ├── package.json ├── php-scoper ├── check-build-php-version.php ├── check-plugin-php-version.php ├── composer.json ├── composer.lock └── config.php ├── readme.txt ├── src ├── AbstractConnection.php ├── Admin │ ├── AdminBarMenu.php │ ├── Area.php │ ├── ConnectionSettings.php │ ├── DashboardWidget.php │ ├── DebugEvents │ │ ├── DebugEvents.php │ │ ├── Event.php │ │ ├── EventsCollection.php │ │ ├── Migration.php │ │ └── Table.php │ ├── DomainChecker.php │ ├── Education.php │ ├── FlyoutMenu.php │ ├── Notifications.php │ ├── PageAbstract.php │ ├── PageInterface.php │ ├── Pages │ │ ├── About.php │ │ ├── AboutTab.php │ │ ├── ActionSchedulerTab.php │ │ ├── AdditionalConnectionsTab.php │ │ ├── AlertsTab.php │ │ ├── AuthTab.php │ │ ├── ControlTab.php │ │ ├── DebugEventsTab.php │ │ ├── EmailReports.php │ │ ├── EmailReportsTab.php │ │ ├── ExportTab.php │ │ ├── Logs.php │ │ ├── LogsTab.php │ │ ├── MiscTab.php │ │ ├── SettingsTab.php │ │ ├── SmartRoutingTab.php │ │ ├── TestTab.php │ │ ├── Tools.php │ │ └── VersusTab.php │ ├── ParentPageAbstract.php │ ├── PluginsInstallSkin.php │ ├── Review.php │ └── SetupWizard.php ├── Compatibility │ ├── Compatibility.php │ └── Plugin │ │ ├── Admin2020.php │ │ ├── PluginAbstract.php │ │ ├── PluginInterface.php │ │ ├── Polylang.php │ │ ├── PolylangPro.php │ │ ├── WPForms.php │ │ ├── WPFormsLite.php │ │ ├── WPML.php │ │ └── WooCommerce.php ├── Conflicts.php ├── Connect.php ├── Connection.php ├── ConnectionInterface.php ├── ConnectionsManager.php ├── Core.php ├── DBRepair.php ├── Debug.php ├── Geo.php ├── Helpers │ ├── Crypto.php │ ├── DB.php │ ├── Helpers.php │ ├── PluginImportDataRetriever.php │ └── UI.php ├── MailCatcher.php ├── MailCatcherInterface.php ├── MailCatcherTrait.php ├── MailCatcherV6.php ├── Migration.php ├── MigrationAbstract.php ├── Migrations.php ├── OptimizedEmailSending.php ├── Options.php ├── Processor.php ├── Providers │ ├── AmazonSES │ │ └── Options.php │ ├── AuthAbstract.php │ ├── AuthInterface.php │ ├── ElasticEmail │ │ ├── Mailer.php │ │ └── Options.php │ ├── Gmail │ │ ├── Auth.php │ │ ├── Logger.php │ │ ├── Mailer.php │ │ └── Options.php │ ├── Loader.php │ ├── Mail │ │ ├── Mailer.php │ │ └── Options.php │ ├── MailerAbstract.php │ ├── MailerInterface.php │ ├── MailerSend │ │ ├── Mailer.php │ │ └── Options.php │ ├── Mailgun │ │ ├── Mailer.php │ │ └── Options.php │ ├── Mailjet │ │ ├── Mailer.php │ │ └── Options.php │ ├── Mandrill │ │ ├── Mailer.php │ │ └── Options.php │ ├── OptionsAbstract.php │ ├── OptionsInterface.php │ ├── Outlook │ │ ├── Options.php │ │ └── Provider.php │ ├── Pepipost │ │ ├── Mailer.php │ │ └── Options.php │ ├── PepipostAPI │ │ ├── Mailer.php │ │ └── Options.php │ ├── Postmark │ │ ├── Mailer.php │ │ └── Options.php │ ├── Resend │ │ ├── Mailer.php │ │ └── Options.php │ ├── SMTP │ │ ├── Mailer.php │ │ └── Options.php │ ├── SMTP2GO │ │ ├── Mailer.php │ │ └── Options.php │ ├── SMTPcom │ │ ├── Mailer.php │ │ └── Options.php │ ├── Sendgrid │ │ ├── Mailer.php │ │ └── Options.php │ ├── Sendinblue │ │ ├── Api.php │ │ ├── Mailer.php │ │ └── Options.php │ ├── Sendlayer │ │ ├── Mailer.php │ │ └── Options.php │ ├── SparkPost │ │ ├── Mailer.php │ │ └── Options.php │ └── Zoho │ │ └── Options.php ├── Queue │ ├── Attachments.php │ ├── Email.php │ ├── Migration.php │ └── Queue.php ├── Reports │ ├── Emails │ │ └── Summary.php │ └── Reports.php ├── SiteHealth.php ├── Tasks │ ├── DebugEventsCleanupTask.php │ ├── Meta.php │ ├── NotificationsUpdateTask.php │ ├── Queue │ │ ├── CleanupQueueTask.php │ │ ├── ProcessQueueTask.php │ │ └── SendEnqueuedEmailTask.php │ ├── Reports │ │ └── SummaryEmailTask.php │ ├── Task.php │ └── Tasks.php ├── Upgrade.php ├── Uploads.php ├── UsageTracking │ ├── SendUsageTask.php │ └── UsageTracking.php ├── WP.php ├── WPMailArgs.php └── WPMailInitiator.php ├── uninstall.php ├── wp-mail-smtp.php └── wp_mail_smtp.php /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.github/ISSUE_TEMPLATE/new-feature.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | npm run --silent cs 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.19.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/_conditional-logic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_conditional-logic.scss -------------------------------------------------------------------------------- /assets/css/_confirm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_confirm.scss -------------------------------------------------------------------------------- /assets/css/_education.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_education.scss -------------------------------------------------------------------------------- /assets/css/_flyout-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_flyout-menu.scss -------------------------------------------------------------------------------- /assets/css/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_footer.scss -------------------------------------------------------------------------------- /assets/css/_general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_general.scss -------------------------------------------------------------------------------- /assets/css/_include-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_include-media.scss -------------------------------------------------------------------------------- /assets/css/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_loader.scss -------------------------------------------------------------------------------- /assets/css/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_normalize.scss -------------------------------------------------------------------------------- /assets/css/_toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_toggle.scss -------------------------------------------------------------------------------- /assets/css/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_tooltip.scss -------------------------------------------------------------------------------- /assets/css/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/_variables.scss -------------------------------------------------------------------------------- /assets/css/admin-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-bar.css -------------------------------------------------------------------------------- /assets/css/admin-bar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-bar.min.css -------------------------------------------------------------------------------- /assets/css/admin-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-bar.scss -------------------------------------------------------------------------------- /assets/css/admin-notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-notifications.css -------------------------------------------------------------------------------- /assets/css/admin-notifications.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-notifications.min.css -------------------------------------------------------------------------------- /assets/css/admin-notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-notifications.scss -------------------------------------------------------------------------------- /assets/css/admin-site-health.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-site-health.css -------------------------------------------------------------------------------- /assets/css/admin-site-health.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-site-health.min.css -------------------------------------------------------------------------------- /assets/css/admin-site-health.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/admin-site-health.scss -------------------------------------------------------------------------------- /assets/css/dashboard-widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/dashboard-widget.css -------------------------------------------------------------------------------- /assets/css/dashboard-widget.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/dashboard-widget.min.css -------------------------------------------------------------------------------- /assets/css/dashboard-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/dashboard-widget.scss -------------------------------------------------------------------------------- /assets/css/emails/summary-report-email.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/emails/summary-report-email.css -------------------------------------------------------------------------------- /assets/css/smtp-about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-about.css -------------------------------------------------------------------------------- /assets/css/smtp-about.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-about.min.css -------------------------------------------------------------------------------- /assets/css/smtp-about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-about.scss -------------------------------------------------------------------------------- /assets/css/smtp-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-admin.css -------------------------------------------------------------------------------- /assets/css/smtp-admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-admin.min.css -------------------------------------------------------------------------------- /assets/css/smtp-admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-admin.scss -------------------------------------------------------------------------------- /assets/css/smtp-smart-routing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-smart-routing.css -------------------------------------------------------------------------------- /assets/css/smtp-smart-routing.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-smart-routing.min.css -------------------------------------------------------------------------------- /assets/css/smtp-smart-routing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/smtp-smart-routing.scss -------------------------------------------------------------------------------- /assets/css/vendor/flatpickr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/vendor/flatpickr.min.css -------------------------------------------------------------------------------- /assets/css/vendor/jquery-confirm.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/vendor/jquery-confirm.min.css -------------------------------------------------------------------------------- /assets/css/vendor/lity.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/css/vendor/lity.min.css -------------------------------------------------------------------------------- /assets/images/about/affiliatewp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/affiliatewp.png -------------------------------------------------------------------------------- /assets/images/about/duplicator-icon-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/duplicator-icon-large.png -------------------------------------------------------------------------------- /assets/images/about/edd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/edd.png -------------------------------------------------------------------------------- /assets/images/about/icon-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/icon-full.svg -------------------------------------------------------------------------------- /assets/images/about/icon-none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/icon-none.svg -------------------------------------------------------------------------------- /assets/images/about/icon-partial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/icon-partial.svg -------------------------------------------------------------------------------- /assets/images/about/plugin-aioseo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-aioseo.png -------------------------------------------------------------------------------- /assets/images/about/plugin-charitable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-charitable.png -------------------------------------------------------------------------------- /assets/images/about/plugin-mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-mi.png -------------------------------------------------------------------------------- /assets/images/about/plugin-om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-om.png -------------------------------------------------------------------------------- /assets/images/about/plugin-pushengage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-pushengage.png -------------------------------------------------------------------------------- /assets/images/about/plugin-rp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-rp.png -------------------------------------------------------------------------------- /assets/images/about/plugin-seedprod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-seedprod.png -------------------------------------------------------------------------------- /assets/images/about/plugin-smash-balloon-facebook-feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-smash-balloon-facebook-feeds.png -------------------------------------------------------------------------------- /assets/images/about/plugin-smash-balloon-instagram-feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-smash-balloon-instagram-feeds.png -------------------------------------------------------------------------------- /assets/images/about/plugin-smash-balloon-twitter-feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-smash-balloon-twitter-feeds.png -------------------------------------------------------------------------------- /assets/images/about/plugin-smash-balloon-youtube-feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-smash-balloon-youtube-feeds.png -------------------------------------------------------------------------------- /assets/images/about/plugin-trustpulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-trustpulse.png -------------------------------------------------------------------------------- /assets/images/about/plugin-wpcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-wpcode.png -------------------------------------------------------------------------------- /assets/images/about/plugin-wpf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/plugin-wpf.png -------------------------------------------------------------------------------- /assets/images/about/searchwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/searchwp.png -------------------------------------------------------------------------------- /assets/images/about/sugar-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/sugar-calendar.png -------------------------------------------------------------------------------- /assets/images/about/team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/team.jpg -------------------------------------------------------------------------------- /assets/images/about/wp-simple-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/about/wp-simple-pay.png -------------------------------------------------------------------------------- /assets/images/additional-connections/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/additional-connections/screenshot-01.png -------------------------------------------------------------------------------- /assets/images/additional-connections/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/additional-connections/screenshot-02.png -------------------------------------------------------------------------------- /assets/images/additional-connections/thumbnail-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/additional-connections/thumbnail-01.png -------------------------------------------------------------------------------- /assets/images/additional-connections/thumbnail-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/additional-connections/thumbnail-02.png -------------------------------------------------------------------------------- /assets/images/dash-widget/error-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/error-icon.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/smtp/delivered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/smtp/delivered.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/smtp/sent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/smtp/sent.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/smtp/total.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/smtp/total.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/smtp/unsent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/smtp/unsent.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/wp/delivered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/wp/delivered.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/wp/sent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/wp/sent.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/wp/total.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/wp/total.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/wp/unsent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/wp/unsent.svg -------------------------------------------------------------------------------- /assets/images/dash-widget/yes-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/dash-widget/yes-green.svg -------------------------------------------------------------------------------- /assets/images/email-reports/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email-reports/screenshot-01.png -------------------------------------------------------------------------------- /assets/images/email-reports/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email-reports/screenshot-02.png -------------------------------------------------------------------------------- /assets/images/email-reports/screenshot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email-reports/screenshot-03.png -------------------------------------------------------------------------------- /assets/images/email-reports/thumbnail-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email-reports/thumbnail-01.png -------------------------------------------------------------------------------- /assets/images/email-reports/thumbnail-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email-reports/thumbnail-02.png -------------------------------------------------------------------------------- /assets/images/email-reports/thumbnail-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email-reports/thumbnail-03.png -------------------------------------------------------------------------------- /assets/images/email/icon-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email/icon-check.png -------------------------------------------------------------------------------- /assets/images/email/illustration-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email/illustration-success.svg -------------------------------------------------------------------------------- /assets/images/email/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email/signature.png -------------------------------------------------------------------------------- /assets/images/email/wp-mail-smtp-whitelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email/wp-mail-smtp-whitelabel.png -------------------------------------------------------------------------------- /assets/images/email/wp-mail-smtp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/email/wp-mail-smtp.png -------------------------------------------------------------------------------- /assets/images/flyout-menu/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/flyout-menu/facebook.svg -------------------------------------------------------------------------------- /assets/images/flyout-menu/life-ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/flyout-menu/life-ring.svg -------------------------------------------------------------------------------- /assets/images/flyout-menu/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/flyout-menu/lightbulb.svg -------------------------------------------------------------------------------- /assets/images/flyout-menu/mascot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/flyout-menu/mascot.svg -------------------------------------------------------------------------------- /assets/images/flyout-menu/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/flyout-menu/star.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/arrow-rotate-right-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/arrow-rotate-right-purple.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/cancel-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/cancel-red.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/check-circle-dark-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/check-circle-dark-green.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/check-circle-solid-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/check-circle-solid-green.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/clock-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/clock-orange.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/exclamation-circle-regular-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/exclamation-circle-regular-red.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/exclamation-circle-solid-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/exclamation-circle-solid-orange.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/exclamation-circle-solid-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/exclamation-circle-solid-red.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/info-circle-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/info-circle-blue.svg -------------------------------------------------------------------------------- /assets/images/font-awesome/info-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/font-awesome/info-circle.svg -------------------------------------------------------------------------------- /assets/images/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/arrow-up.svg -------------------------------------------------------------------------------- /assets/images/icons/badge-percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/badge-percent.svg -------------------------------------------------------------------------------- /assets/images/icons/check-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/check-solid.svg -------------------------------------------------------------------------------- /assets/images/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/check.svg -------------------------------------------------------------------------------- /assets/images/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/close.svg -------------------------------------------------------------------------------- /assets/images/icons/dashicons/dashicons-pdf-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/dashicons/dashicons-pdf-grey.svg -------------------------------------------------------------------------------- /assets/images/icons/dashicons/dashicons-yes-alt-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/dashicons/dashicons-yes-alt-green.svg -------------------------------------------------------------------------------- /assets/images/icons/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/error.svg -------------------------------------------------------------------------------- /assets/images/icons/exclamation-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/exclamation-circle.svg -------------------------------------------------------------------------------- /assets/images/icons/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/lightbulb.svg -------------------------------------------------------------------------------- /assets/images/icons/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/success.svg -------------------------------------------------------------------------------- /assets/images/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/warning.svg -------------------------------------------------------------------------------- /assets/images/icons/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/icons/zoom.svg -------------------------------------------------------------------------------- /assets/images/loaders/loading-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/loaders/loading-blue.svg -------------------------------------------------------------------------------- /assets/images/loaders/loading-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/loaders/loading-white.svg -------------------------------------------------------------------------------- /assets/images/loaders/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/loaders/loading.svg -------------------------------------------------------------------------------- /assets/images/logo-whitelabel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/logo-whitelabel.svg -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/images/logs/archive-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/logs/archive-thumbnail.png -------------------------------------------------------------------------------- /assets/images/logs/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/logs/archive.png -------------------------------------------------------------------------------- /assets/images/logs/single-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/logs/single-thumbnail.png -------------------------------------------------------------------------------- /assets/images/logs/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/logs/single.png -------------------------------------------------------------------------------- /assets/images/menu-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/menu-icon.svg -------------------------------------------------------------------------------- /assets/images/pattie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/pattie.svg -------------------------------------------------------------------------------- /assets/images/pro-badge-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/pro-badge-small.svg -------------------------------------------------------------------------------- /assets/images/pro-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/pro-badge.svg -------------------------------------------------------------------------------- /assets/images/providers/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/aws.svg -------------------------------------------------------------------------------- /assets/images/providers/brevo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/brevo.svg -------------------------------------------------------------------------------- /assets/images/providers/elasticemail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/elasticemail.svg -------------------------------------------------------------------------------- /assets/images/providers/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/google.svg -------------------------------------------------------------------------------- /assets/images/providers/mailersend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/mailersend.svg -------------------------------------------------------------------------------- /assets/images/providers/mailgun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/mailgun.svg -------------------------------------------------------------------------------- /assets/images/providers/mailjet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/mailjet.svg -------------------------------------------------------------------------------- /assets/images/providers/mandrill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/mandrill.svg -------------------------------------------------------------------------------- /assets/images/providers/microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/microsoft.svg -------------------------------------------------------------------------------- /assets/images/providers/pepipost-smtp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/pepipost-smtp.png -------------------------------------------------------------------------------- /assets/images/providers/pepipost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/pepipost.png -------------------------------------------------------------------------------- /assets/images/providers/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/php.svg -------------------------------------------------------------------------------- /assets/images/providers/postmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/postmark.svg -------------------------------------------------------------------------------- /assets/images/providers/resend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/resend.svg -------------------------------------------------------------------------------- /assets/images/providers/sendgrid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/sendgrid.svg -------------------------------------------------------------------------------- /assets/images/providers/sendlayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/sendlayer.svg -------------------------------------------------------------------------------- /assets/images/providers/smtp-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/smtp-com.svg -------------------------------------------------------------------------------- /assets/images/providers/smtp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/smtp.svg -------------------------------------------------------------------------------- /assets/images/providers/smtp2go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/smtp2go.svg -------------------------------------------------------------------------------- /assets/images/providers/sparkpost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/sparkpost.svg -------------------------------------------------------------------------------- /assets/images/providers/zoho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/providers/zoho.svg -------------------------------------------------------------------------------- /assets/images/recommended.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/recommended.svg -------------------------------------------------------------------------------- /assets/images/reports/email/icon-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/icon-arrow-down.png -------------------------------------------------------------------------------- /assets/images/reports/email/icon-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/icon-arrow-up.png -------------------------------------------------------------------------------- /assets/images/reports/email/icon-check-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/icon-check-gray.png -------------------------------------------------------------------------------- /assets/images/reports/email/icon-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/icon-check.png -------------------------------------------------------------------------------- /assets/images/reports/email/icon-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/icon-click.png -------------------------------------------------------------------------------- /assets/images/reports/email/icon-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/icon-email.png -------------------------------------------------------------------------------- /assets/images/reports/email/icon-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/icon-error.png -------------------------------------------------------------------------------- /assets/images/reports/email/icon-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/icon-open.png -------------------------------------------------------------------------------- /assets/images/reports/email/wp-mail-smtp-logo-dark-whitelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/wp-mail-smtp-logo-dark-whitelabel.png -------------------------------------------------------------------------------- /assets/images/reports/email/wp-mail-smtp-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/wp-mail-smtp-logo-dark.png -------------------------------------------------------------------------------- /assets/images/reports/email/wp-mail-smtp-logo-whitelabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/wp-mail-smtp-logo-whitelabel.png -------------------------------------------------------------------------------- /assets/images/reports/email/wp-mail-smtp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/email/wp-mail-smtp-logo.png -------------------------------------------------------------------------------- /assets/images/reports/icon-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/reports/icon-note.png -------------------------------------------------------------------------------- /assets/images/wp-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/images/wp-spinner.gif -------------------------------------------------------------------------------- /assets/js/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/connect.js -------------------------------------------------------------------------------- /assets/js/connect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/connect.min.js -------------------------------------------------------------------------------- /assets/js/smtp-about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-about.js -------------------------------------------------------------------------------- /assets/js/smtp-about.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-about.min.js -------------------------------------------------------------------------------- /assets/js/smtp-admin-notices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-admin-notices.js -------------------------------------------------------------------------------- /assets/js/smtp-admin-notices.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-admin-notices.min.js -------------------------------------------------------------------------------- /assets/js/smtp-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-admin.js -------------------------------------------------------------------------------- /assets/js/smtp-admin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-admin.min.js -------------------------------------------------------------------------------- /assets/js/smtp-dashboard-widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-dashboard-widget.js -------------------------------------------------------------------------------- /assets/js/smtp-dashboard-widget.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-dashboard-widget.min.js -------------------------------------------------------------------------------- /assets/js/smtp-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-notifications.js -------------------------------------------------------------------------------- /assets/js/smtp-notifications.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-notifications.min.js -------------------------------------------------------------------------------- /assets/js/smtp-tools-debug-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-tools-debug-events.js -------------------------------------------------------------------------------- /assets/js/smtp-tools-debug-events.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/smtp-tools-debug-events.min.js -------------------------------------------------------------------------------- /assets/js/vendor/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/vendor/chart.min.js -------------------------------------------------------------------------------- /assets/js/vendor/chartjs-adapter-moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/vendor/chartjs-adapter-moment.min.js -------------------------------------------------------------------------------- /assets/js/vendor/flatpickr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/vendor/flatpickr.min.js -------------------------------------------------------------------------------- /assets/js/vendor/jquery-confirm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/vendor/jquery-confirm.min.js -------------------------------------------------------------------------------- /assets/js/vendor/jquery.matchHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/vendor/jquery.matchHeight.js -------------------------------------------------------------------------------- /assets/js/vendor/jquery.matchHeight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/vendor/jquery.matchHeight.min.js -------------------------------------------------------------------------------- /assets/js/vendor/lity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/js/vendor/lity.min.js -------------------------------------------------------------------------------- /assets/languages/wp-mail-smtp-vue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/languages/wp-mail-smtp-vue.php -------------------------------------------------------------------------------- /assets/languages/wp-mail-smtp.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/languages/wp-mail-smtp.pot -------------------------------------------------------------------------------- /assets/vue/css/wizard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/css/wizard.min.css -------------------------------------------------------------------------------- /assets/vue/css/wizard.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/css/wizard.rtl.min.css -------------------------------------------------------------------------------- /assets/vue/img/amazonses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/amazonses.svg -------------------------------------------------------------------------------- /assets/vue/img/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/arrow.svg -------------------------------------------------------------------------------- /assets/vue/img/brevo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/brevo.svg -------------------------------------------------------------------------------- /assets/vue/img/check-circle-solid-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/check-circle-solid-white.svg -------------------------------------------------------------------------------- /assets/vue/img/check-circle-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/check-circle-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/check-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/check-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/chevron-down-solid-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/chevron-down-solid-grey.svg -------------------------------------------------------------------------------- /assets/vue/img/copy-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/copy-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/elasticemail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/elasticemail.svg -------------------------------------------------------------------------------- /assets/vue/img/exclamation-circle-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/exclamation-circle-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/gmail-sign-in-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/gmail-sign-in-btn.svg -------------------------------------------------------------------------------- /assets/vue/img/gmail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/gmail.svg -------------------------------------------------------------------------------- /assets/vue/img/info-circle-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/info-circle-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/loading-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/loading-blue.svg -------------------------------------------------------------------------------- /assets/vue/img/loading-pattie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/loading-pattie.svg -------------------------------------------------------------------------------- /assets/vue/img/loading-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/loading-white.svg -------------------------------------------------------------------------------- /assets/vue/img/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/loading.svg -------------------------------------------------------------------------------- /assets/vue/img/lock-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/lock-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/logo.svg -------------------------------------------------------------------------------- /assets/vue/img/long-arrow-alt-left-regular-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/long-arrow-alt-left-regular-grey.svg -------------------------------------------------------------------------------- /assets/vue/img/long-arrow-alt-left-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/long-arrow-alt-left-regular.svg -------------------------------------------------------------------------------- /assets/vue/img/long-arrow-alt-right-regular-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/long-arrow-alt-right-regular-white.svg -------------------------------------------------------------------------------- /assets/vue/img/long-arrow-alt-right-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/long-arrow-alt-right-regular.svg -------------------------------------------------------------------------------- /assets/vue/img/mailersend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/mailersend.svg -------------------------------------------------------------------------------- /assets/vue/img/mailgun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/mailgun.svg -------------------------------------------------------------------------------- /assets/vue/img/mailjet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/mailjet.svg -------------------------------------------------------------------------------- /assets/vue/img/mandrill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/mandrill.svg -------------------------------------------------------------------------------- /assets/vue/img/outlook-sign-in-btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/outlook-sign-in-btn.svg -------------------------------------------------------------------------------- /assets/vue/img/outlook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/outlook.svg -------------------------------------------------------------------------------- /assets/vue/img/postmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/postmark.svg -------------------------------------------------------------------------------- /assets/vue/img/pro-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/pro-badge.svg -------------------------------------------------------------------------------- /assets/vue/img/question-circle-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/question-circle-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/resend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/resend.svg -------------------------------------------------------------------------------- /assets/vue/img/sendgrid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/sendgrid.svg -------------------------------------------------------------------------------- /assets/vue/img/sendlayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/sendlayer.svg -------------------------------------------------------------------------------- /assets/vue/img/smtp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/smtp.svg -------------------------------------------------------------------------------- /assets/vue/img/smtp2go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/smtp2go.svg -------------------------------------------------------------------------------- /assets/vue/img/smtpcom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/smtpcom.svg -------------------------------------------------------------------------------- /assets/vue/img/sparkpost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/sparkpost.svg -------------------------------------------------------------------------------- /assets/vue/img/star-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/star-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/thumbs-down-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/thumbs-down-hover.svg -------------------------------------------------------------------------------- /assets/vue/img/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/thumbs-down.svg -------------------------------------------------------------------------------- /assets/vue/img/thumbs-up-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/thumbs-up-hover.svg -------------------------------------------------------------------------------- /assets/vue/img/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/thumbs-up.svg -------------------------------------------------------------------------------- /assets/vue/img/times-solid-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/times-solid-grey.svg -------------------------------------------------------------------------------- /assets/vue/img/times-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/times-solid.svg -------------------------------------------------------------------------------- /assets/vue/img/working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/working.svg -------------------------------------------------------------------------------- /assets/vue/img/zoho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/img/zoho.svg -------------------------------------------------------------------------------- /assets/vue/js/chunk-vendors.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/js/chunk-vendors.min.js -------------------------------------------------------------------------------- /assets/vue/js/wizard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/vue/js/wizard.min.js -------------------------------------------------------------------------------- /assets/wporg/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/banner-1544x500.png -------------------------------------------------------------------------------- /assets/wporg/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/banner-772x250.png -------------------------------------------------------------------------------- /assets/wporg/blueprints/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/blueprints/blueprint.json -------------------------------------------------------------------------------- /assets/wporg/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/icon-128x128.png -------------------------------------------------------------------------------- /assets/wporg/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/icon-256x256.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-1.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-10.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-11.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-12.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-13.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-14.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-15.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-16.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-2.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-3.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-4.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-5.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-6.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-7.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-8.png -------------------------------------------------------------------------------- /assets/wporg/screenshot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/assets/wporg/screenshot-9.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/composer.json -------------------------------------------------------------------------------- /gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/gulpfile.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/package.json -------------------------------------------------------------------------------- /php-scoper/check-build-php-version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/php-scoper/check-build-php-version.php -------------------------------------------------------------------------------- /php-scoper/check-plugin-php-version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/php-scoper/check-plugin-php-version.php -------------------------------------------------------------------------------- /php-scoper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/php-scoper/composer.json -------------------------------------------------------------------------------- /php-scoper/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/php-scoper/composer.lock -------------------------------------------------------------------------------- /php-scoper/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/php-scoper/config.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/readme.txt -------------------------------------------------------------------------------- /src/AbstractConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/AbstractConnection.php -------------------------------------------------------------------------------- /src/Admin/AdminBarMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/AdminBarMenu.php -------------------------------------------------------------------------------- /src/Admin/Area.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Area.php -------------------------------------------------------------------------------- /src/Admin/ConnectionSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/ConnectionSettings.php -------------------------------------------------------------------------------- /src/Admin/DashboardWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/DashboardWidget.php -------------------------------------------------------------------------------- /src/Admin/DebugEvents/DebugEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/DebugEvents/DebugEvents.php -------------------------------------------------------------------------------- /src/Admin/DebugEvents/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/DebugEvents/Event.php -------------------------------------------------------------------------------- /src/Admin/DebugEvents/EventsCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/DebugEvents/EventsCollection.php -------------------------------------------------------------------------------- /src/Admin/DebugEvents/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/DebugEvents/Migration.php -------------------------------------------------------------------------------- /src/Admin/DebugEvents/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/DebugEvents/Table.php -------------------------------------------------------------------------------- /src/Admin/DomainChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/DomainChecker.php -------------------------------------------------------------------------------- /src/Admin/Education.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Education.php -------------------------------------------------------------------------------- /src/Admin/FlyoutMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/FlyoutMenu.php -------------------------------------------------------------------------------- /src/Admin/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Notifications.php -------------------------------------------------------------------------------- /src/Admin/PageAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/PageAbstract.php -------------------------------------------------------------------------------- /src/Admin/PageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/PageInterface.php -------------------------------------------------------------------------------- /src/Admin/Pages/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/About.php -------------------------------------------------------------------------------- /src/Admin/Pages/AboutTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/AboutTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/ActionSchedulerTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/ActionSchedulerTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/AdditionalConnectionsTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/AdditionalConnectionsTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/AlertsTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/AlertsTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/AuthTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/AuthTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/ControlTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/ControlTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/DebugEventsTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/DebugEventsTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/EmailReports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/EmailReports.php -------------------------------------------------------------------------------- /src/Admin/Pages/EmailReportsTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/EmailReportsTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/ExportTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/ExportTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/Logs.php -------------------------------------------------------------------------------- /src/Admin/Pages/LogsTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/LogsTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/MiscTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/MiscTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/SettingsTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/SettingsTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/SmartRoutingTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/SmartRoutingTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/TestTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/TestTab.php -------------------------------------------------------------------------------- /src/Admin/Pages/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/Tools.php -------------------------------------------------------------------------------- /src/Admin/Pages/VersusTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Pages/VersusTab.php -------------------------------------------------------------------------------- /src/Admin/ParentPageAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/ParentPageAbstract.php -------------------------------------------------------------------------------- /src/Admin/PluginsInstallSkin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/PluginsInstallSkin.php -------------------------------------------------------------------------------- /src/Admin/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/Review.php -------------------------------------------------------------------------------- /src/Admin/SetupWizard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Admin/SetupWizard.php -------------------------------------------------------------------------------- /src/Compatibility/Compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Compatibility.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/Admin2020.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/Admin2020.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/PluginAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/PluginAbstract.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/PluginInterface.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/Polylang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/Polylang.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/PolylangPro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/PolylangPro.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/WPForms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/WPForms.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/WPFormsLite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/WPFormsLite.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/WPML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/WPML.php -------------------------------------------------------------------------------- /src/Compatibility/Plugin/WooCommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Compatibility/Plugin/WooCommerce.php -------------------------------------------------------------------------------- /src/Conflicts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Conflicts.php -------------------------------------------------------------------------------- /src/Connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Connect.php -------------------------------------------------------------------------------- /src/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Connection.php -------------------------------------------------------------------------------- /src/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/ConnectionInterface.php -------------------------------------------------------------------------------- /src/ConnectionsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/ConnectionsManager.php -------------------------------------------------------------------------------- /src/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Core.php -------------------------------------------------------------------------------- /src/DBRepair.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/DBRepair.php -------------------------------------------------------------------------------- /src/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Debug.php -------------------------------------------------------------------------------- /src/Geo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Geo.php -------------------------------------------------------------------------------- /src/Helpers/Crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Helpers/Crypto.php -------------------------------------------------------------------------------- /src/Helpers/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Helpers/DB.php -------------------------------------------------------------------------------- /src/Helpers/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Helpers/Helpers.php -------------------------------------------------------------------------------- /src/Helpers/PluginImportDataRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Helpers/PluginImportDataRetriever.php -------------------------------------------------------------------------------- /src/Helpers/UI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Helpers/UI.php -------------------------------------------------------------------------------- /src/MailCatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/MailCatcher.php -------------------------------------------------------------------------------- /src/MailCatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/MailCatcherInterface.php -------------------------------------------------------------------------------- /src/MailCatcherTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/MailCatcherTrait.php -------------------------------------------------------------------------------- /src/MailCatcherV6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/MailCatcherV6.php -------------------------------------------------------------------------------- /src/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Migration.php -------------------------------------------------------------------------------- /src/MigrationAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/MigrationAbstract.php -------------------------------------------------------------------------------- /src/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Migrations.php -------------------------------------------------------------------------------- /src/OptimizedEmailSending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/OptimizedEmailSending.php -------------------------------------------------------------------------------- /src/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Options.php -------------------------------------------------------------------------------- /src/Processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Processor.php -------------------------------------------------------------------------------- /src/Providers/AmazonSES/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/AmazonSES/Options.php -------------------------------------------------------------------------------- /src/Providers/AuthAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/AuthAbstract.php -------------------------------------------------------------------------------- /src/Providers/AuthInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/AuthInterface.php -------------------------------------------------------------------------------- /src/Providers/ElasticEmail/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/ElasticEmail/Mailer.php -------------------------------------------------------------------------------- /src/Providers/ElasticEmail/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/ElasticEmail/Options.php -------------------------------------------------------------------------------- /src/Providers/Gmail/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Gmail/Auth.php -------------------------------------------------------------------------------- /src/Providers/Gmail/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Gmail/Logger.php -------------------------------------------------------------------------------- /src/Providers/Gmail/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Gmail/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Gmail/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Gmail/Options.php -------------------------------------------------------------------------------- /src/Providers/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Loader.php -------------------------------------------------------------------------------- /src/Providers/Mail/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Mail/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Mail/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Mail/Options.php -------------------------------------------------------------------------------- /src/Providers/MailerAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/MailerAbstract.php -------------------------------------------------------------------------------- /src/Providers/MailerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/MailerInterface.php -------------------------------------------------------------------------------- /src/Providers/MailerSend/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/MailerSend/Mailer.php -------------------------------------------------------------------------------- /src/Providers/MailerSend/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/MailerSend/Options.php -------------------------------------------------------------------------------- /src/Providers/Mailgun/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Mailgun/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Mailgun/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Mailgun/Options.php -------------------------------------------------------------------------------- /src/Providers/Mailjet/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Mailjet/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Mailjet/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Mailjet/Options.php -------------------------------------------------------------------------------- /src/Providers/Mandrill/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Mandrill/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Mandrill/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Mandrill/Options.php -------------------------------------------------------------------------------- /src/Providers/OptionsAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/OptionsAbstract.php -------------------------------------------------------------------------------- /src/Providers/OptionsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/OptionsInterface.php -------------------------------------------------------------------------------- /src/Providers/Outlook/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Outlook/Options.php -------------------------------------------------------------------------------- /src/Providers/Outlook/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Outlook/Provider.php -------------------------------------------------------------------------------- /src/Providers/Pepipost/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Pepipost/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Pepipost/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Pepipost/Options.php -------------------------------------------------------------------------------- /src/Providers/PepipostAPI/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/PepipostAPI/Mailer.php -------------------------------------------------------------------------------- /src/Providers/PepipostAPI/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/PepipostAPI/Options.php -------------------------------------------------------------------------------- /src/Providers/Postmark/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Postmark/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Postmark/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Postmark/Options.php -------------------------------------------------------------------------------- /src/Providers/Resend/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Resend/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Resend/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Resend/Options.php -------------------------------------------------------------------------------- /src/Providers/SMTP/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/SMTP/Mailer.php -------------------------------------------------------------------------------- /src/Providers/SMTP/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/SMTP/Options.php -------------------------------------------------------------------------------- /src/Providers/SMTP2GO/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/SMTP2GO/Mailer.php -------------------------------------------------------------------------------- /src/Providers/SMTP2GO/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/SMTP2GO/Options.php -------------------------------------------------------------------------------- /src/Providers/SMTPcom/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/SMTPcom/Mailer.php -------------------------------------------------------------------------------- /src/Providers/SMTPcom/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/SMTPcom/Options.php -------------------------------------------------------------------------------- /src/Providers/Sendgrid/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Sendgrid/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Sendgrid/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Sendgrid/Options.php -------------------------------------------------------------------------------- /src/Providers/Sendinblue/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Sendinblue/Api.php -------------------------------------------------------------------------------- /src/Providers/Sendinblue/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Sendinblue/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Sendinblue/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Sendinblue/Options.php -------------------------------------------------------------------------------- /src/Providers/Sendlayer/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Sendlayer/Mailer.php -------------------------------------------------------------------------------- /src/Providers/Sendlayer/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Sendlayer/Options.php -------------------------------------------------------------------------------- /src/Providers/SparkPost/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/SparkPost/Mailer.php -------------------------------------------------------------------------------- /src/Providers/SparkPost/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/SparkPost/Options.php -------------------------------------------------------------------------------- /src/Providers/Zoho/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Providers/Zoho/Options.php -------------------------------------------------------------------------------- /src/Queue/Attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Queue/Attachments.php -------------------------------------------------------------------------------- /src/Queue/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Queue/Email.php -------------------------------------------------------------------------------- /src/Queue/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Queue/Migration.php -------------------------------------------------------------------------------- /src/Queue/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Queue/Queue.php -------------------------------------------------------------------------------- /src/Reports/Emails/Summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Reports/Emails/Summary.php -------------------------------------------------------------------------------- /src/Reports/Reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Reports/Reports.php -------------------------------------------------------------------------------- /src/SiteHealth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/SiteHealth.php -------------------------------------------------------------------------------- /src/Tasks/DebugEventsCleanupTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/DebugEventsCleanupTask.php -------------------------------------------------------------------------------- /src/Tasks/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/Meta.php -------------------------------------------------------------------------------- /src/Tasks/NotificationsUpdateTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/NotificationsUpdateTask.php -------------------------------------------------------------------------------- /src/Tasks/Queue/CleanupQueueTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/Queue/CleanupQueueTask.php -------------------------------------------------------------------------------- /src/Tasks/Queue/ProcessQueueTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/Queue/ProcessQueueTask.php -------------------------------------------------------------------------------- /src/Tasks/Queue/SendEnqueuedEmailTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/Queue/SendEnqueuedEmailTask.php -------------------------------------------------------------------------------- /src/Tasks/Reports/SummaryEmailTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/Reports/SummaryEmailTask.php -------------------------------------------------------------------------------- /src/Tasks/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/Task.php -------------------------------------------------------------------------------- /src/Tasks/Tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Tasks/Tasks.php -------------------------------------------------------------------------------- /src/Upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Upgrade.php -------------------------------------------------------------------------------- /src/Uploads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/Uploads.php -------------------------------------------------------------------------------- /src/UsageTracking/SendUsageTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/UsageTracking/SendUsageTask.php -------------------------------------------------------------------------------- /src/UsageTracking/UsageTracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/UsageTracking/UsageTracking.php -------------------------------------------------------------------------------- /src/WP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/WP.php -------------------------------------------------------------------------------- /src/WPMailArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/WPMailArgs.php -------------------------------------------------------------------------------- /src/WPMailInitiator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/src/WPMailInitiator.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/uninstall.php -------------------------------------------------------------------------------- /wp-mail-smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/wp-mail-smtp.php -------------------------------------------------------------------------------- /wp_mail_smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesomemotive/WP-Mail-SMTP/HEAD/wp_mail_smtp.php --------------------------------------------------------------------------------