├── README.md ├── assets ├── banner-772x250.jpg ├── icon-128x128.png ├── icon-256x256.png ├── screenshot-1.png ├── screenshot-10.png ├── screenshot-11.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 ├── lib ├── class-sendgrid-filters.php ├── class-sendgrid-mc-optin.php ├── class-sendgrid-nlvx-widget.php ├── class-sendgrid-nlvx.php ├── class-sendgrid-settings.php ├── class-sendgrid-statistics.php ├── class-sendgrid-tools.php ├── class-sendgrid-virtual-pages.php ├── integration │ ├── class-buddypress-override.php │ └── class-buddypress.php └── sendgrid │ ├── class-sendgrid-api.php │ ├── class-sendgrid-php.php │ ├── class-sendgrid-smtp.php │ ├── class-sendgrid-translator.php │ ├── interfaces │ └── class-sendgrid-interface.php │ ├── sendgrid-api-v3.php │ └── sendgrid-wp-mail.php ├── readme.txt ├── vendor ├── autoload.php ├── is_mail.php ├── punycode │ ├── Exception │ │ ├── DomainOutOfBoundsException.php │ │ ├── LabelOutOfBoundsException.php │ │ └── OutOfBoundsException.php │ ├── LICENSE │ └── Punycode.php ├── sendgrid-php │ ├── Client.php │ ├── SendGrid.php │ ├── SendGrid │ │ ├── Email.php │ │ ├── Exception.php │ │ └── Response.php │ └── resources │ │ ├── api_keys.php │ │ ├── asm_groups.php │ │ ├── asm_suppressions.php │ │ └── global_stats.php └── smtpapi-php │ ├── Smtpapi.php │ └── Smtpapi │ └── Header.php ├── view ├── css │ ├── datepicker │ │ └── smoothness │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui-1.10.3.custom.css │ ├── select2.min.css │ └── sendgrid.css ├── images │ ├── loader.gif │ ├── logo.png │ └── logo32.png ├── js │ ├── jquery.flot.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.time.js │ ├── jquery.flot.togglelegend.js │ ├── jquery.ui.datepicker.js │ ├── select2.full.min.js │ ├── sendgrid.settings-v1.7.3.js │ └── sendgrid.stats-v1.7.3.js ├── partials │ ├── sendgrid_stats_compliance.php │ ├── sendgrid_stats_deliveries.php │ ├── sendgrid_stats_engagement.php │ └── sendgrid_stats_widget.php ├── sendgrid_contextual_help.php ├── sendgrid_settings.php ├── sendgrid_settings_general.php ├── sendgrid_settings_multisite.php ├── sendgrid_settings_nav.php ├── sendgrid_settings_nlvx.php ├── sendgrid_settings_test_contact.php ├── sendgrid_settings_test_email.php └── sendgrid_stats.php └── wpsendgrid.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner-772x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/banner-772x250.jpg -------------------------------------------------------------------------------- /assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/icon-128x128.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/screenshot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-10.png -------------------------------------------------------------------------------- /assets/screenshot-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-11.png -------------------------------------------------------------------------------- /assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-2.png -------------------------------------------------------------------------------- /assets/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-3.png -------------------------------------------------------------------------------- /assets/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-4.png -------------------------------------------------------------------------------- /assets/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-5.png -------------------------------------------------------------------------------- /assets/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-6.png -------------------------------------------------------------------------------- /assets/screenshot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-7.png -------------------------------------------------------------------------------- /assets/screenshot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-8.png -------------------------------------------------------------------------------- /assets/screenshot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/assets/screenshot-9.png -------------------------------------------------------------------------------- /lib/class-sendgrid-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/class-sendgrid-filters.php -------------------------------------------------------------------------------- /lib/class-sendgrid-mc-optin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/class-sendgrid-mc-optin.php -------------------------------------------------------------------------------- /lib/class-sendgrid-nlvx-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/class-sendgrid-nlvx-widget.php -------------------------------------------------------------------------------- /lib/class-sendgrid-nlvx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/class-sendgrid-nlvx.php -------------------------------------------------------------------------------- /lib/class-sendgrid-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/class-sendgrid-settings.php -------------------------------------------------------------------------------- /lib/class-sendgrid-statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/class-sendgrid-statistics.php -------------------------------------------------------------------------------- /lib/class-sendgrid-tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/class-sendgrid-tools.php -------------------------------------------------------------------------------- /lib/class-sendgrid-virtual-pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/class-sendgrid-virtual-pages.php -------------------------------------------------------------------------------- /lib/integration/class-buddypress-override.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/integration/class-buddypress-override.php -------------------------------------------------------------------------------- /lib/integration/class-buddypress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/integration/class-buddypress.php -------------------------------------------------------------------------------- /lib/sendgrid/class-sendgrid-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/sendgrid/class-sendgrid-api.php -------------------------------------------------------------------------------- /lib/sendgrid/class-sendgrid-php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/sendgrid/class-sendgrid-php.php -------------------------------------------------------------------------------- /lib/sendgrid/class-sendgrid-smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/sendgrid/class-sendgrid-smtp.php -------------------------------------------------------------------------------- /lib/sendgrid/class-sendgrid-translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/sendgrid/class-sendgrid-translator.php -------------------------------------------------------------------------------- /lib/sendgrid/interfaces/class-sendgrid-interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/sendgrid/interfaces/class-sendgrid-interface.php -------------------------------------------------------------------------------- /lib/sendgrid/sendgrid-api-v3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/sendgrid/sendgrid-api-v3.php -------------------------------------------------------------------------------- /lib/sendgrid/sendgrid-wp-mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/lib/sendgrid/sendgrid-wp-mail.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/readme.txt -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/is_mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/is_mail.php -------------------------------------------------------------------------------- /vendor/punycode/Exception/DomainOutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/punycode/Exception/DomainOutOfBoundsException.php -------------------------------------------------------------------------------- /vendor/punycode/Exception/LabelOutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/punycode/Exception/LabelOutOfBoundsException.php -------------------------------------------------------------------------------- /vendor/punycode/Exception/OutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/punycode/Exception/OutOfBoundsException.php -------------------------------------------------------------------------------- /vendor/punycode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/punycode/LICENSE -------------------------------------------------------------------------------- /vendor/punycode/Punycode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/punycode/Punycode.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/Client.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/SendGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/SendGrid.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/SendGrid/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/SendGrid/Email.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/SendGrid/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/SendGrid/Exception.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/SendGrid/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/SendGrid/Response.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/resources/api_keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/resources/api_keys.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/resources/asm_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/resources/asm_groups.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/resources/asm_suppressions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/resources/asm_suppressions.php -------------------------------------------------------------------------------- /vendor/sendgrid-php/resources/global_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/sendgrid-php/resources/global_stats.php -------------------------------------------------------------------------------- /vendor/smtpapi-php/Smtpapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/smtpapi-php/Smtpapi.php -------------------------------------------------------------------------------- /vendor/smtpapi-php/Smtpapi/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/vendor/smtpapi-php/Smtpapi/Header.php -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/animated-overlay.gif -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /view/css/datepicker/smoothness/jquery-ui-1.10.3.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/datepicker/smoothness/jquery-ui-1.10.3.custom.css -------------------------------------------------------------------------------- /view/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/select2.min.css -------------------------------------------------------------------------------- /view/css/sendgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/css/sendgrid.css -------------------------------------------------------------------------------- /view/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/images/loader.gif -------------------------------------------------------------------------------- /view/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/images/logo.png -------------------------------------------------------------------------------- /view/images/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/images/logo32.png -------------------------------------------------------------------------------- /view/js/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/js/jquery.flot.js -------------------------------------------------------------------------------- /view/js/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/js/jquery.flot.symbol.js -------------------------------------------------------------------------------- /view/js/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/js/jquery.flot.time.js -------------------------------------------------------------------------------- /view/js/jquery.flot.togglelegend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/js/jquery.flot.togglelegend.js -------------------------------------------------------------------------------- /view/js/jquery.ui.datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/js/jquery.ui.datepicker.js -------------------------------------------------------------------------------- /view/js/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/js/select2.full.min.js -------------------------------------------------------------------------------- /view/js/sendgrid.settings-v1.7.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/js/sendgrid.settings-v1.7.3.js -------------------------------------------------------------------------------- /view/js/sendgrid.stats-v1.7.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/js/sendgrid.stats-v1.7.3.js -------------------------------------------------------------------------------- /view/partials/sendgrid_stats_compliance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/partials/sendgrid_stats_compliance.php -------------------------------------------------------------------------------- /view/partials/sendgrid_stats_deliveries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/partials/sendgrid_stats_deliveries.php -------------------------------------------------------------------------------- /view/partials/sendgrid_stats_engagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/partials/sendgrid_stats_engagement.php -------------------------------------------------------------------------------- /view/partials/sendgrid_stats_widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/partials/sendgrid_stats_widget.php -------------------------------------------------------------------------------- /view/sendgrid_contextual_help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_contextual_help.php -------------------------------------------------------------------------------- /view/sendgrid_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_settings.php -------------------------------------------------------------------------------- /view/sendgrid_settings_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_settings_general.php -------------------------------------------------------------------------------- /view/sendgrid_settings_multisite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_settings_multisite.php -------------------------------------------------------------------------------- /view/sendgrid_settings_nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_settings_nav.php -------------------------------------------------------------------------------- /view/sendgrid_settings_nlvx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_settings_nlvx.php -------------------------------------------------------------------------------- /view/sendgrid_settings_test_contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_settings_test_contact.php -------------------------------------------------------------------------------- /view/sendgrid_settings_test_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_settings_test_email.php -------------------------------------------------------------------------------- /view/sendgrid_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/view/sendgrid_stats.php -------------------------------------------------------------------------------- /wpsendgrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/wordpress/HEAD/wpsendgrid.php --------------------------------------------------------------------------------