From d113926f711e4d37ff985262b7ef7e0e9ce2f69d Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Wed, 27 Jan 2016 22:09:57 -0500 Subject: [PATCH] Use the MAIL_ADDRESS and SITE_NAME for the default mail address and name --- config/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index cb783c9..c94bb9d 100644 --- a/config/mail.php +++ b/config/mail.php @@ -54,7 +54,7 @@ return [ | */ - 'from' => ['address' => null, 'name' => null], + 'from' => ['address' => env('MAIL_ADDRESS', null), 'name' => env('SITE_NAME', null)], /* |--------------------------------------------------------------------------