Laravel - Mail - Using A Global From Address
However, if your application uses the same "from" address for all of its emails, it can become cumbersome to call the from
method in each mailable class you generate. Instead, you may specify a global "from" address in your config/mail.php
configuration file. This address will be used if no other "from" address is specified within the mailable class:
'from' => ['address' => '[email protected]', 'name' => 'App Name'],
In addition, you may define a global "reply_to" address within your config/mail.php
configuration file:
'reply_to' => ['address' => '[email protected]', 'name' => 'App Name'],