From 89e11864a55ac4f85fd1cc02591ab26425e4caa4 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 18 Feb 2026 17:13:09 -0600 Subject: [PATCH] Simplify cpanel deploy file --- app/Mail/ExampleMail.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Mail/ExampleMail.php b/app/Mail/ExampleMail.php index 77deab9e..71098149 100644 --- a/app/Mail/ExampleMail.php +++ b/app/Mail/ExampleMail.php @@ -22,7 +22,10 @@ class ExampleMail extends Mailable { return new Envelope( subject: 'Example Mail', - from: new Address(env("MAIL_FROM_ADDRESS"),env("MAIL_FROM_NAME")) + from: new Address( + config('mail.from.address'), + config('mail.from.name') + ) ); }