No Hint Path Defined for [Mail] Laravel 5.4

No hint path defined for [mail] Laravel 5.4

You need to call the markdown() method in the build() method of your mailable - not the view() method. See the example below:

/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->markdown('view-to-mail');
}

No hint path defined for [mail] Laravel 8

i have try this script it is working fine may be it is the issue of cache you can try this command

php artisan optimize:clear

No hint path defined for [mail] - problem with send email in Laravel 5.8

do you have blade in this path "vendor/mail/html/message.blade.php"
you need to make a blade and set in it your mail message



Related Topics



Leave a reply



Submit