我想向刚刚输入电子邮件地址的用户发送电子邮件。
像这样,
$email = $request->email;
Mail::send('emails.info', $data, function ($message) {
$message->from('myemail@gmail.com', 'My Email');
$message->to($email)->subject('The subject');
});
但这会返回错误:
未定义的变量:电子邮件
问题出在哪里?
答案 0 :(得分:5)
您需要在封闭使用use
中引用电子邮件$email = $request->email;
Mail::send('emails.info', $data, function ($message) use ($email) {
$message->from('myemail@gmail.com', 'My Email');
$message->to($email)->subject('The subject');
});