Laravel 5.7 - 未发送验证邮件
Laravel 5.7 - Verification email is not sent
我已将我的 laravel 实例从版本 5.6 升级到版本 5.7。现在我尝试使用built-in email verification from laravel。
我的问题是,当我使用 "resend" 功能时,我在成功注册后没有收到电子邮件。
有什么问题?
我遇到了完全相同的问题。这是来自 Laravel 的默认代码。
为了在成功注册后发送电子邮件,您可以执行以下解决方法:
在App\Http\Controllers\Auth\RegisterController
改变这个:
protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
}
到这个:
protected function create(array $data)
{
$user = User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
$user->sendEmailVerificationNotification();
return $user;
}
我也遇到了同样的问题。当我检查源代码时,没有必要实现调用 sendEmailVerificationNotfication()
方法,您只需将事件处理程序添加到您的 EventServiceProvider.php
,因为您的事件处理程序是先前创建的,所以Larael 无法更新它。它应该是这样的:
namespace App\Providers;
use Illuminate\Support\Facades\Event;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
];
如果您有自定义注册页面,您可以在创建用户后触发事件,如下所示:
event(new Registered($user));
以防其他人正在寻找相同问题的解决方案。
请阅读文档,它准确解释了解决此问题需要做什么
https://laravel.com/docs/5.7/verification
简而言之,如果您已经在使用 5.7(即您的 users
table 中有必要的字段),您需要做的就是:
- 使您的
User
模型实现 MustVerifyEmail
接口。
- 将
['verify' => true]
添加到Auth::routes
方法Auth::routes(['verify' => true]);
您可以在上面的 link 中找到有关电子邮件验证的所有信息。
除了 djug 的回复之外,如果您在从 5.6 版升级后遇到同样的问题,就像我一样,您将在此处找到实施内容的分步指南:
https://laravel.com/docs/5.7/upgrade
在电子邮件验证部分下
希望这对我为此苦苦挣扎的人有所帮助。
确保您设置了发件人电子邮件,因为大多数 SMTP 服务器不允许从任何地址发送。这些环境配置是:
MAIL_FROM_ADDRESS=from@domain.com
MAIL_FROM_NAME=Something
我知道这个 post 有点老了,但我对 Laravel 7 也有类似的问题。我认为 Zane 上面的回答应该是公认的答案。只是为了详细说明,请使用以下步骤。这应该在使用 composer 和 php artisan 安装 auth 脚手架之后完成。注意:我绝不是 Laravel 专业人士。如果我的代码有任何问题,请告诉我。我学得越多越好。
准备用户模型
确保您的 App\User 模型实现 Illuminate\Contracts\Auth\MustVerifyEmail:
<?php
namespace App;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable implements MustVerifyEmail
{
use Notifiable;
// ...
}
设置路线
在 routes\web.php 中更改为:
Auth::routes();
为此:
Auth::routes(['verify'=>true]);
之后,您可以通过直接在路由上使用中间件来指定哪些路由需要经过验证的电子邮件地址,如下所示:
Route::get('/profile','ProfileController@index')->middleware('verified');
或者你可以在控制器的构造函数中这样做:
public function __construct()
{
$this->middleware(['auth','verified']);
}
修改后的寄存器控制器
我正在使用以下注册控制器代码。请注意,注册函数包含对以下内容的调用:
event(new Registered($user));
这是发送初始注册电子邮件的关键。
注册控制器
请记住,此控制器设计用于主要 ajax 站点,因此注册功能 returns 和 json 响应的原因。
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use App\User;
use Illuminate\Foundation\Auth\RegistersUsers;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Validator;
use Illuminate\Http\Request;
use Illuminate\Auth\Events\Registered;
use Auth;
class RegisterController extends Controller
{
/*
|--------------------------------------------------------------------------
| Register Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users as well as their
| validation and creation. By default this controller uses a trait to
| provide this functionality without requiring any additional code.
|
*/
use RegistersUsers;
/**
* Where to redirect users after registration.
*
* @var string
*/
protected $redirectTo = RouteServiceProvider::HOME;
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest');
}
/**
* 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, [
'first_name' => ['required', 'string', 'max:255'],
'last_name' => ['required', 'string', 'max:255'],
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
'phone_number' => ['required', 'numeric', 'min:10'],
'password' => ['required', 'string', 'min:8', 'confirmed'],
'password_confirmation'=> ['required', 'string'],
]);
}
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return \App\User
*/
protected function create(array $data)
{
$user=User::create([
'first_name' => $data['first_name'],
'last_name' => $data['last_name'],
'email' => $data['email'],
'phone_number' => $data['phone_number'],
'password' => Hash::make($data['password']),
]);
return $user;
}
/**
* Execute registration and login the user
*
* @param array $request
* @return response
*/
public function register(Request $request) {
$validation = $this->validator($request->all());
if ($validation->fails()) {
return response()->json($validation->errors(),422);
}
else{
$user = $this->create($request->all());
event(new Registered($user));
Auth::login($user);
if (Auth::user()){
return response()->json(['success'=>'Registration Successful']);
}
}
}
}
我已将我的 laravel 实例从版本 5.6 升级到版本 5.7。现在我尝试使用built-in email verification from laravel。
我的问题是,当我使用 "resend" 功能时,我在成功注册后没有收到电子邮件。
有什么问题?
我遇到了完全相同的问题。这是来自 Laravel 的默认代码。
为了在成功注册后发送电子邮件,您可以执行以下解决方法:
在App\Http\Controllers\Auth\RegisterController
改变这个:
protected function create(array $data)
{
return User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
}
到这个:
protected function create(array $data)
{
$user = User::create([
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
]);
$user->sendEmailVerificationNotification();
return $user;
}
我也遇到了同样的问题。当我检查源代码时,没有必要实现调用 sendEmailVerificationNotfication()
方法,您只需将事件处理程序添加到您的 EventServiceProvider.php
,因为您的事件处理程序是先前创建的,所以Larael 无法更新它。它应该是这样的:
namespace App\Providers;
use Illuminate\Support\Facades\Event;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
];
如果您有自定义注册页面,您可以在创建用户后触发事件,如下所示:
event(new Registered($user));
以防其他人正在寻找相同问题的解决方案。
请阅读文档,它准确解释了解决此问题需要做什么
https://laravel.com/docs/5.7/verification
简而言之,如果您已经在使用 5.7(即您的 users
table 中有必要的字段),您需要做的就是:
- 使您的
User
模型实现MustVerifyEmail
接口。 - 将
['verify' => true]
添加到Auth::routes
方法Auth::routes(['verify' => true]);
您可以在上面的 link 中找到有关电子邮件验证的所有信息。
除了 djug 的回复之外,如果您在从 5.6 版升级后遇到同样的问题,就像我一样,您将在此处找到实施内容的分步指南:
https://laravel.com/docs/5.7/upgrade
在电子邮件验证部分下
希望这对我为此苦苦挣扎的人有所帮助。
确保您设置了发件人电子邮件,因为大多数 SMTP 服务器不允许从任何地址发送。这些环境配置是:
MAIL_FROM_ADDRESS=from@domain.com
MAIL_FROM_NAME=Something
我知道这个 post 有点老了,但我对 Laravel 7 也有类似的问题。我认为 Zane 上面的回答应该是公认的答案。只是为了详细说明,请使用以下步骤。这应该在使用 composer 和 php artisan 安装 auth 脚手架之后完成。注意:我绝不是 Laravel 专业人士。如果我的代码有任何问题,请告诉我。我学得越多越好。
准备用户模型
确保您的 App\User 模型实现 Illuminate\Contracts\Auth\MustVerifyEmail:
<?php
namespace App;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable implements MustVerifyEmail
{
use Notifiable;
// ...
}
设置路线
在 routes\web.php 中更改为:
Auth::routes();
为此:
Auth::routes(['verify'=>true]);
之后,您可以通过直接在路由上使用中间件来指定哪些路由需要经过验证的电子邮件地址,如下所示:
Route::get('/profile','ProfileController@index')->middleware('verified');
或者你可以在控制器的构造函数中这样做:
public function __construct()
{
$this->middleware(['auth','verified']);
}
修改后的寄存器控制器
我正在使用以下注册控制器代码。请注意,注册函数包含对以下内容的调用:
event(new Registered($user));
这是发送初始注册电子邮件的关键。
注册控制器
请记住,此控制器设计用于主要 ajax 站点,因此注册功能 returns 和 json 响应的原因。
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use App\User;
use Illuminate\Foundation\Auth\RegistersUsers;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Validator;
use Illuminate\Http\Request;
use Illuminate\Auth\Events\Registered;
use Auth;
class RegisterController extends Controller
{
/*
|--------------------------------------------------------------------------
| Register Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users as well as their
| validation and creation. By default this controller uses a trait to
| provide this functionality without requiring any additional code.
|
*/
use RegistersUsers;
/**
* Where to redirect users after registration.
*
* @var string
*/
protected $redirectTo = RouteServiceProvider::HOME;
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest');
}
/**
* 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, [
'first_name' => ['required', 'string', 'max:255'],
'last_name' => ['required', 'string', 'max:255'],
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
'phone_number' => ['required', 'numeric', 'min:10'],
'password' => ['required', 'string', 'min:8', 'confirmed'],
'password_confirmation'=> ['required', 'string'],
]);
}
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return \App\User
*/
protected function create(array $data)
{
$user=User::create([
'first_name' => $data['first_name'],
'last_name' => $data['last_name'],
'email' => $data['email'],
'phone_number' => $data['phone_number'],
'password' => Hash::make($data['password']),
]);
return $user;
}
/**
* Execute registration and login the user
*
* @param array $request
* @return response
*/
public function register(Request $request) {
$validation = $this->validator($request->all());
if ($validation->fails()) {
return response()->json($validation->errors(),422);
}
else{
$user = $this->create($request->all());
event(new Registered($user));
Auth::login($user);
if (Auth::user()){
return response()->json(['success'=>'Registration Successful']);
}
}
}
}