Как добавить адрес электронной почты в URL при сбросе пароля в laravel 5.3

Я должен добавить адрес электронной почты пользователей в URL при выполнении сброса пароля, чтобы URL сброса выглядел так http://blog.dev/password/reset/4cfbb048346474aab7080c88f16c34b9ea377b9ea35804387216fce303a38855?email=test%40gmail.com

Однако я получаю ошибку FatalErrorException in CustomResetPassword.php line 54: Call to undefined method App\Notifications\CustomResetPassword::getEmailForPasswordReset()

Я отправляю электронное письмо о сбросе через пользовательский класс уведомлений, код которого выглядит следующим образом

namespace App\Notifications;use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;class CustomResetPassword extends Notification
{
use Queueable;public $token;/**
* Create a new notification instance.
*
* @return void
*/
public function __construct($token)
{
$this->token = $token;

}

/**
* Get the notification's delivery channels.
*
* @param  mixed  $notifiable
* @return array
*/
public function via($notifiable)
{
return ['mail'];
}

/**
* Get the mail representation of the notification.
*
* @param  mixed  $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable)
{
return (new MailMessage)
->subject('Reset Password')
->line('You are receiving this email because we received a password reset request for your account.')
->action('Reset Password', url('password/reset', $this->token).'?email='.urlencode($this->getEmailForPasswordReset()))
->line('If you did not request a password reset, no further action is required.');
}

/**
* Get the array representation of the notification.
*
* @param  mixed  $notifiable
* @return array
*/
public function toArray($notifiable)
{
return [
//
];
}
}

Я что-то здесь упускаю?

0

Решение

$this обратитесь к вашему фактическому классу, который вы пытаетесь использовать getEmailForPasswordReset метод CustomResetPassword но этот метод не существует.

Вы можете передать письмо на notification как вы сделали для токена.

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]