├── README.md ├── css └── mandrill.css ├── gpl-2.0.txt ├── how-tos.php ├── images ├── FreddieHead.png ├── MandrillHead.png ├── icon-ajax-loading.gif ├── mandrill-head-icon.png └── rss_icon.gif ├── js ├── custom-plot.js ├── flot │ ├── LICENSE.txt │ ├── jquery.flot.js │ ├── jquery.flot.resize.js │ └── jquery.flot.stack.js └── mandrill.js ├── lang ├── wpmandrill-es_ES.mo ├── wpmandrill-es_ES.po └── wpmandrill.po ├── legacy └── function.wp_mail.php ├── lib ├── mandrill.class.php ├── pluginActivation.class.php └── wpMandrill.class.php ├── readme.txt ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.jpg ├── stats.php ├── uninstall.php └── wpmandrill.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/README.md -------------------------------------------------------------------------------- /css/mandrill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/css/mandrill.css -------------------------------------------------------------------------------- /gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/gpl-2.0.txt -------------------------------------------------------------------------------- /how-tos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/how-tos.php -------------------------------------------------------------------------------- /images/FreddieHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/images/FreddieHead.png -------------------------------------------------------------------------------- /images/MandrillHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/images/MandrillHead.png -------------------------------------------------------------------------------- /images/icon-ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/images/icon-ajax-loading.gif -------------------------------------------------------------------------------- /images/mandrill-head-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/images/mandrill-head-icon.png -------------------------------------------------------------------------------- /images/rss_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/images/rss_icon.gif -------------------------------------------------------------------------------- /js/custom-plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/js/custom-plot.js -------------------------------------------------------------------------------- /js/flot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/js/flot/LICENSE.txt -------------------------------------------------------------------------------- /js/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/js/flot/jquery.flot.js -------------------------------------------------------------------------------- /js/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/js/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /js/flot/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/js/flot/jquery.flot.stack.js -------------------------------------------------------------------------------- /js/mandrill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/js/mandrill.js -------------------------------------------------------------------------------- /lang/wpmandrill-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/lang/wpmandrill-es_ES.mo -------------------------------------------------------------------------------- /lang/wpmandrill-es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/lang/wpmandrill-es_ES.po -------------------------------------------------------------------------------- /lang/wpmandrill.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/lang/wpmandrill.po -------------------------------------------------------------------------------- /legacy/function.wp_mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/legacy/function.wp_mail.php -------------------------------------------------------------------------------- /lib/mandrill.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/lib/mandrill.class.php -------------------------------------------------------------------------------- /lib/pluginActivation.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/lib/pluginActivation.class.php -------------------------------------------------------------------------------- /lib/wpMandrill.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/lib/wpMandrill.class.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/screenshot-1.jpg -------------------------------------------------------------------------------- /screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/screenshot-2.jpg -------------------------------------------------------------------------------- /screenshot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/screenshot-3.jpg -------------------------------------------------------------------------------- /screenshot-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/screenshot-4.jpg -------------------------------------------------------------------------------- /stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/stats.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/uninstall.php -------------------------------------------------------------------------------- /wpmandrill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miller-Media/send-emails-with-mandrill/HEAD/wpmandrill.php --------------------------------------------------------------------------------