Log::info('Sending email', array(
'title' => $attributes['title'],
'recipient' => $attributes['email']
));
Mail::queue('emails.welcome', $attributes, function($message) use ($attributes)
{
$message
->to($attributes['email'])
->subject($attributes['title']);
});
問題は、に渡されるクロージャにありMail::queue
ます。どうしたの?これはdocs にあるものとまったく同じです。