Simplify cpanel deploy file

This commit is contained in:
2026-02-18 17:13:09 -06:00
parent ff014ca71f
commit 89e11864a5
+4 -1
View File
@@ -22,7 +22,10 @@ class ExampleMail extends Mailable
{ {
return new Envelope( return new Envelope(
subject: 'Example Mail', 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')
)
); );
} }