How to customize the email verification email from Laravel 5.7?

前端 未结 8 1557
感动是毒
感动是毒 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: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:

提交回复
热议问题