Laravel 5.1 忘记密码电子邮件模板中的用户名
Laravel 5.1 user name in forget password email template
我正在使用 Laravel 5.1 和 开箱即用 身份验证。
在发送给用户的'password reset email'中,我想添加username
,以便用户收到带有his/her名字的个性化邮件。
如有任何关于如何执行此操作的指导,我们将不胜感激。
引用此 SO post:
Yes you can change the email template, which is located at:
resources/views/emails/password.blade.php
For customization, pass an instance of User model to this view and echo
out username per the following:
Hello, {{$user->username}}
//And Body of Reset link goes here
我正在使用 Laravel 5.1 和 开箱即用 身份验证。
在发送给用户的'password reset email'中,我想添加username
,以便用户收到带有his/her名字的个性化邮件。
如有任何关于如何执行此操作的指导,我们将不胜感激。
引用此 SO post:
Yes you can change the email template, which is located at:
resources/views/emails/password.blade.php
For customization, pass an instance of User model to this view and echo out username per the following:
Hello, {{$user->username}}
//And Body of Reset link goes here