How to customize the email verification email from Laravel 5.7?

前端 未结 8 1526
感动是毒
感动是毒 2020-12-03 02:59

I just upgraded to Laravel 5.7 and now I am using the built in Email Verification. However there is 2 things I have not been able to figure out and the primary issue is how

相关标签:
8条回答
  • 2020-12-03 03:48

    To send verification email you can just use the next code:

     // send new verification email to user
     $user->sendEmailVerificationNotification();
    
    0 讨论(0)
  • 2020-12-03 03:49

    Navigate to these files

    • vendor/laravel/framework/src/Illuminate/Auth/MustVerifyEmail.php

    • vendor/laravel/framework/src/Illuminate/Auth/Notifications/VerifyEmail.php

    and then customize it. you can even introduce a constructor in vendor/laravel/framework/src/Illuminate/Auth/Notifications/VerifyEmail.php and pass value through vendor/laravel/framework/src/Illuminate/Auth/MustVerifyEmail.php

    eg:

    0 讨论(0)
提交回复
热议问题