-
Notifications
You must be signed in to change notification settings - Fork 11.6k
Closed
Closed
Bug
Copy link
Labels
Description
Laravel Version
12.0.1
PHP Version
8.2.27
Database Driver & Version
No response
Description
I was trying the new starter kits and when I checked the emails that were sent, the notification logo image was broken, which should be located at https://laravel.com/img/notification-logo.png
I'd guess that the original file is still somewhere in the repo's git history, but here's what it should show up:
(I managed to get it from the https://web.archive.org/web/20250109185620/https://laravel.com/img/notification-logo.png)
When I open the email on my mailpit, here's what's being shown:
Steps To Reproduce
- Create a new laravel by running
laravel new test-project
(I'll assume you're using Herd and the project is now running attest-project.test
, and that mailpit is already installed and running) - Set up your
.env
, updating the MAIL_ variables to
MAIL_MAILER=smtp
MAIL_HOST=localhost
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="${APP_NAME}"
- Go to
test-project.test
- Create an account
- Logout
- Go to "Log In"
- Go to "Forgot your password?"
- Put in the email you've just used
- The email's image will be broken (or at least is now, as of the latest version of the framework src/Illuminate/Mail/resources/views/html/header.blade.php file )