can you post the method you are using to send your emails?
Overriding default email components
Hi, having an issue with overriding default email components in Laravel 6.
I've ran the 'php artisan vendor:publish' so I have access to the vendor files.
I can edit the email.blade in notifications which works fine. However when I edit the blade files in vendor.mail.html or vendor.mail.text the changes never take.
Is there anything specific that needs done to make these override Laravel default or should they just work automatically if they exist?
I've also tried cache clear and view clear.
Any suggestions would be appreciated..
Found the issue..
Need to add this to config/mail.php, perhaps not there as I've an older project.
/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/
'markdown' => [
'theme' => 'default',
'paths' => [
resource_path('views/vendor/mail'),
]
],
Please or to participate in this conversation.