├── .gitignore ├── README.md ├── composer.json └── src ├── ElasticTransport.php └── LaravelElasticEmailServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wouterdeberg/laravel-elastic-email/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wouterdeberg/laravel-elastic-email/HEAD/composer.json -------------------------------------------------------------------------------- /src/ElasticTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wouterdeberg/laravel-elastic-email/HEAD/src/ElasticTransport.php -------------------------------------------------------------------------------- /src/LaravelElasticEmailServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wouterdeberg/laravel-elastic-email/HEAD/src/LaravelElasticEmailServiceProvider.php --------------------------------------------------------------------------------