eternoaprendiz gracias por responder , hice lo que me indicas pero obtengo un error
Código PHP:
Ver originalRoute::get('recuperar', function()
{
return View::make('recuperacion');
});
Route
::post('recuperar', array('before' => 'csrf', function(){
$data = Input::get('correo');
$data2 = DB::table('users')
->select('email')
->where('email', $data)->first();
if ($data2) {
Mail::send("send-email", $data2, function($message) {
});
}
return View
::make("inicio", array("data2" => $data2));
}));
este es el error que obtengo
Cita: Argument 2 passed to Illuminate\Mail\Mailer::send() must be of the type array, object given, called in /var/www/html/volcano/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php on line 183 and defined