写了一个用户注册发送邮件的 mailables,按照文档来的:
1、生成 mailables
php artisan make:mail UserRegistered
2、在Mail文件夹就有了个UserRegistered.php
里面的build方法,按照文档,这样写的:
public function build()
{
return $this->view('emails.activate-user')
->with([
'name' => $this->user->name,
'url' => route('activateUser',['token'=>$this->user->confirmation_token])
]);
}
邮件可以发送成功,邮件标题是User Registered
,可以改吗?