php – 在浏览器中预览邮件通知
作者:互联网
根据Laravel,根据to the documentation,我可以通过控制器返回Mailable以在浏览器中显示它.它有助于预览邮件.
有没有办法在浏览器中预览邮件通知?
我试过了:
return (new MyNotification())->toMail($some_user);
但它不起作用:
The Response content must be a string or object implementing __toString(), “object” given.
解决方法:
您无法渲染Notification.您可以渲染您在toMail()中使用的Mailable.例如,如果Mailable被称为SomeMailable:
public function toMail($user)
{
return (new SomeMailable($user))->to($user->email);
}
然后你可以渲染Mailable:
return new SomeMailable($some_user);
标签:laravel-5-5,php,laravel,laravel-5 来源: https://codeday.me/bug/20190823/1697792.html