Skip to content

Instantly share code, notes, and snippets.

@3h5a9
Last active September 12, 2017 13:57
Show Gist options
  • Save 3h5a9/ce6f35a38be34fba8c706f6bac74afcc to your computer and use it in GitHub Desktop.
Save 3h5a9/ce6f35a38be34fba8c706f6bac74afcc to your computer and use it in GitHub Desktop.
Problem on Sending email on user registration
<?php
namespace App\Http\Controllers\Auth;
use App\User;
use Validator;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ThrottlesLogins;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
use Mail;
use Session;
class AuthController extends Controller
{
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users, as well as the
| authentication of existing users. By default, this controller uses
| a simple trait to add these behaviors. Why don't you explore it?
|
*/
use AuthenticatesAndRegistersUsers, ThrottlesLogins;
/**
* Where to redirect users after login / registration.
*
* @var string
*/
protected $redirectTo = '/home';
/**
* Create a new authentication controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware($this->guestMiddleware(), ['except' => 'logout']);
}
/**
* Get a validator for an incoming registration request.
*
* @param array $data
* @return \Illuminate\Contracts\Validation\Validator
*/
protected function validator(array $data)
{
return Validator::make($data, [
'name' => 'required|max:255',
'email' => 'required|email|max:255|unique:users',
'password' => 'required|min:6|confirmed',
]);
}
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return User
*/
protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => bcrypt($data['password']),
]);
//send verification mail to user
//---------------------------------------------------------
$user = $data['email'];
Mail::send('pages.emails', $user, function($message) use ($user)
{
$message->from('myemail@gmail.com', "myname");
$message->subject("Welcome to site name");
$message->to($user);
});
}
public function authenticated($request, $user)
{
Session::flash('success', 'You have successfully logged in!');
return redirect()->intended($this->redirectPath());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment