Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I manually send a password reset request in Laravel 5.2?

I would like to manually send a password reset request to a specific user (not the one currently logged in) from within a controller. I did some digging around in the Laravel code and it seems like I should be calling postEmail(Request $request) in ResetsPasswords, but I can't seem to figure out how to get access to the right PasswordController instance to call it.

like image 489
Daniel Centore Avatar asked Aug 11 '16 20:08

Daniel Centore


4 Answers

Why not just something like this for your controller:

<?php

namespace Illuminate\Foundation\Auth;

use Illuminate\Http\Request;
use Illuminate\Mail\Message;
use Illuminate\Support\Facades\Password;

class YourController extends Controller
{
    public function sendEmail()
    {
        $credentials = ['email' => $email_address];
        $response = Password::sendResetLink($credentials, function (Message $message) {
            $message->subject($this->getEmailSubject());
        });

        switch ($response) {
            case Password::RESET_LINK_SENT:
                return redirect()->back()->with('status', trans($response));
            case Password::INVALID_USER:
                return redirect()->back()->withErrors(['email' => trans($response)]);
        }
    }
}

You don't really explain the context of how you want to send this, so adjust accordingly.

like image 71
Jared Eitnier Avatar answered Oct 07 '22 00:10

Jared Eitnier


Thanks to Mariusz Kurman, I only added token to his answer. this works just fine:

$user = User::where('email', request()->input('email'))->first();
$token = Password::getRepository()->create($user);
$user->sendPasswordResetNotification($token);
like image 40
Shayan de Avatar answered Oct 07 '22 00:10

Shayan de


Complete control for Laravel 5.5:

    $user = User::where('email', request()->input('email'))->first();
    $token = Password::getRepository()->create($user);

    Mail::send(['text' => 'emails.password'], ['token' => $token], function (Message $message) use ($user) {
        $message->subject(config('app.name') . ' Password Reset Link');
        $message->to($user->email);
    });
like image 32
kjdion84 Avatar answered Oct 07 '22 00:10

kjdion84


The easiest way:

    $token = Str::random(60);
    $user = User::where('email', request()->input('email'))->first();
    $user->sendPasswordResetNotification($token);

@Doc's bottom

And if you want to edit your e-mail manually:

    php artisan vendor:publish

select "11" gives you:

/resources/views/vendor/notifications/email.blade.php
like image 40
Mariusz Kurman Avatar answered Oct 06 '22 23:10

Mariusz Kurman