【发布时间】:2014-10-13 04:57:15
【问题描述】:
我正在使用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');
});
【问题讨论】:
标签: php email laravel swiftmailer