Specify a different mail theme for Notifications
Where to place a custom mail theme in Laravel
public function boot()
{
$this->loadViewsFrom(resource_path('views/mail'), 'appmail');
}
public function toMail($notifiable)
{
return (new MailMessage)
->theme('appmail::mycorp')
->subject('Password Reset')
->line('Your password reset code is specified below')
// etcLast updated