没有为[mail] Laravel 8定义提示路径



在我的Laravel项目中,我试图使用电子邮件发送器,我使用Mailable和队列中的作业,并且工作正常,但现在我试图使用markdown发送电子邮件,并且由于某种原因不工作,因为此错误:"没有为[mail]定义的提示路径">

可邮寄的:

{
use Queueable, SerializesModels;
/**
* Create a new message instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->markdown('emails.orders.shipped',['url'=>'www.google.com']);
}
} 

,这是刀片视图,这是Laravel文档的默认示例:

@component('mail::message')
# Introduction
The body of your message.
@component('mail::button', ['url' => $url])
Button Text
@endcomponent
Thanks,<br>
@endcomponent

我需要传递一个url它将是一个字符串

我已经尝试了这个脚本,它工作得很好,可能是缓存的问题,你可以尝试这个命令

php artisan optimize:clear

相关内容

  • 没有找到相关文章

最新更新