最佳答案
我正在尝试使用 Laravel 4中的 Mail Class,但是我无法将变量传递给 $m 对象。
$team 对象包含我从数据库中获得的雄辩数据。
Mail::send('emails.report', $data, function($m)
{
$m->to($team->senior->email, $team->senior->first_name. ' '. $team->senior->last_name );
$m->cc($team->junior->email, $team->junior->first_name. ' '. $team->junior->last_name );
$m->subject('Monthly Report');
$m->from('info@website.example', 'Sender');
});
由于某种原因,我得到 $team 对象不可用的错误。我想这和瞄准镜有关。