我正在使用带有开箱即用身份验证的Laravel 5.1。
在发送给用户的'密码重置电子邮件'中,我想添加Element objeto = docToBeSigned.createElementNS(
Constants.SignatureSpecNS, "ds:Object");
objeto.setAttributeNS(null, Constants._ATT_ID, "DetachedSignatureReference");
IdResolver.registerElementById(objeto, "DetachedSignatureReference");
,以便用户收到以他/她的名字个性化的电子邮件。
有关如何执行此操作的任何指导表示赞赏。
答案 0 :(得分:2)
推荐此SO帖子:Customizing password reset mail View in Laravel
是的,您可以更改电子邮件模板,该模板位于:
resources/views/emails/password.blade.php
对于自定义,将User模型的实例传递给此视图并回显 按以下方式输出用户名:
Hello, {{$user->username}}
//And Body of Reset link goes here