smarcet ae650777ef Migrated Mail from native to Sendgrid API
Change-Id: I2dbc7947710f3da301e8361842a5fd0ffd026f6c
2019-04-10 19:19:11 -03:00

14 lines
450 B
PHP

<?php
return [
/**
* EMAIL ERROR LOG CONFIGURATION
*/
//The receiver of the mail
'to_email' => env('LOG_EMAIL_TO'),
//The sender of the mail
'from_email' => env('LOG_EMAIL_FROM'),
//Log Level (debug, info, notice, warning, error, critical, alert)
'level' => env('LOG_LEVEL', 'error'),
'email_level' => env('LOG_EMAIL_LEVEL', 'error'),
'email_subject' => env('LOG_EMAIL_SUBJECT', ''),
];