App\Notifications\Frontend\Auth\UserNeedsPasswordReset::toMail PHP Method

toMail() public method

Build the mail representation of the notification.
public toMail ( mixed $notifiable ) : Illuminate\Notifications\Messages\MailMessage
$notifiable mixed
return Illuminate\Notifications\Messages\MailMessage
    public function toMail($notifiable)
    {
        return (new MailMessage())->subject(app_name() . ': ' . trans('strings.emails.auth.password_reset_subject'))->line(trans('strings.emails.auth.password_cause_of_email'))->action(trans('buttons.emails.auth.reset_password'), route('frontend.auth.password.reset.form', $this->token))->line(trans('strings.emails.auth.password_if_not_requested'));
    }
UserNeedsPasswordReset