├── .editorconfig ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── composer.json ├── config └── routes.php ├── docs ├── Makefile ├── conf.py ├── configuration.rst ├── contents.rst ├── index.rst ├── installation.rst ├── make.bat ├── requirements.txt └── usage.rst ├── phpunit.xml.dist ├── src ├── Controller │ └── MailPreviewController.php ├── Mailer │ ├── Preview │ │ └── MailPreview.php │ └── PreviewTrait.php └── Template │ ├── Element │ └── previews.ctp │ └── MailPreview │ ├── email.ctp │ └── index.ctp └── tests └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/composer.json -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/config/routes.php -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Controller/MailPreviewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/src/Controller/MailPreviewController.php -------------------------------------------------------------------------------- /src/Mailer/Preview/MailPreview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/src/Mailer/Preview/MailPreview.php -------------------------------------------------------------------------------- /src/Mailer/PreviewTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/src/Mailer/PreviewTrait.php -------------------------------------------------------------------------------- /src/Template/Element/previews.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/src/Template/Element/previews.ctp -------------------------------------------------------------------------------- /src/Template/MailPreview/email.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/src/Template/MailPreview/email.ctp -------------------------------------------------------------------------------- /src/Template/MailPreview/index.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/src/Template/MailPreview/index.ctp -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josegonzalez/cakephp-mail-preview/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------