如何在不使用视图的情况下使用 Laravel 4 发送电子邮件?
2022-08-30 20:23:56
我正在使用Laravel 4开发一个网站,并希望在测试期间向自己发送临时电子邮件,但似乎发送电子邮件的唯一方法是浏览视图。
有可能做这样的事情吗?
Mail::queue('This is the body of my email', $data, function($message)
{
$message->to('foo@example.com', 'John Smith')->subject('This is my subject');
});