https://github.com/juniorb2ss/laravel-email-logger
Logger sending emails
https://github.com/juniorb2ss/laravel-email-logger
Last synced: about 1 year ago
JSON representation
Logger sending emails
- Host: GitHub
- URL: https://github.com/juniorb2ss/laravel-email-logger
- Owner: juniorb2ss
- License: mit
- Created: 2016-09-21T17:09:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-09T17:26:33.000Z (about 8 years ago)
- Last Synced: 2025-03-29T14:41:36.075Z (about 1 year ago)
- Language: PHP
- Size: 26.4 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Email Logger
Possible to armazenate all emails send by application in Redis, Eloquent or Elasticsearch.
## Installation
Laravel Email Logger can be installed via [composer](http://getcomposer.org) by requiring the `juniorb2ss/laravel-email-logger` package in your project's `composer.json`.
```json
{
"require": {
"juniorb2ss/laravel-email-logger": "v1.*"
}
}
```
Next add the service provider and the alias to `app/config/app`.
```php
'providers' => [
// ...
juniorb2ss\LaravelEmailLogger\Providers\LaravelEmailLoggerServiceProvider::class,
],
```
Now, run this in terminal:
```bash
php artisan vendor:publish --provider="juniorb2ss\LaravelEmailLogger\Providers\LaravelEmailLoggerServiceProvider"
php artisan migrate
```
## Configurations
Edit `app/emaillogger.php`
## To-do
- Implementation Redis and Elasticsearch
- Implementation Tests