The mail is sent but empty ! I am using laravel 5.6
Function within SendMailController
public function send_mail()
{
$name = 'Hello';
Mail::to('example@gmail.com')->send(new UsersRegistered($name));
return 'mail sent';
}
The mail is sent but empty ! I am using laravel 5.6
Function within SendMailController
public function send_mail()
{
$name = 'Hello';
Mail::to('example@gmail.com')->send(new UsersRegistered($name));
return 'mail sent';
}
收起
You can indeed send mail using send(new MailerClass($args))
as you have done. Make sure that the class has a build()
method, that returns a blade view.
报告相同问题?