view('emails.'.$template)->subject('项目提醒'); // 发送内容 $mailable->with(['name'=>$to_email,'msg'=>$message]); // 进行发送 Mail::to($to_email)->send($mailable); } }