How to change From Name in Laravel Mail Notification
In config/mail.php set from property as: ‘from’ => [‘address’ => ‘someemail@example.com’, ‘name’ => ‘Firstname Lastname’] Here, address should be the one that you want to display in from email and name should be the one what you want to display in from name. P.S. This will be a default email setting for each email you … Read more