每当注册用户时,都会调度此代码:
\Mail::to($user)->queue(new UserRegisteredMail($user));
UserRegisteredMail
中的构建方法使用markdown
,如您所见:
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->markdown('emails.user.registered');
}
这个问题与No hint path defined for [mail] Laravel 5.4之间的区别在于我已经在使用markdown
方法,但我仍然遇到此错误。有什么想法吗?