Skip to content

Instantly share code, notes, and snippets.

@sejr
Created July 30, 2014 05:40
Show Gist options
  • Select an option

  • Save sejr/1615a60a509d117afb75 to your computer and use it in GitHub Desktop.

Select an option

Save sejr/1615a60a509d117afb75 to your computer and use it in GitHub Desktop.
Contact form error
Route::get('contact', 'PageController@contact');
Route::post('contact', function() {
$data = Input::all();
Mail::send('emails.contact', $data, function($message)
{
$message->from($data['email'] , $data['username']);
$message->to('connect@creepr.co', 'The Creepr Network')->subject('Creepr Support Request');
});
return View::make('/');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment