From d47697e7816a28fe5a09f3b8cfcd1f184ec99016 Mon Sep 17 00:00:00 2001 From: Jrean Date: Tue, 8 Nov 2016 23:37:35 +0800 Subject: [PATCH] Env for mail sender address + name --- config/mail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/mail.php b/config/mail.php index 9d4c4d83..c66e428c 100644 --- a/config/mail.php +++ b/config/mail.php @@ -56,8 +56,8 @@ */ 'from' => [ - 'address' => 'hello@example.com', - 'name' => 'Example', + 'address' => env('MAIL_SENDER_ADDRESS', 'hello@example.com'), + 'name' => env('MAIL_SENDER_NAME', 'Example'), ], /*