Files
newznab-tmux-NNTmux/app/Jobs/SendPasswordForgottenEmail.php
T
2026-02-11 14:02:26 +01:00

39 lines
872 B
PHP

<?php
namespace App\Jobs;
use App\Mail\ForgottenPassword;
use App\Models\User;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Mail;
class SendPasswordForgottenEmail implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
private string $resetLink;
private User $user;
/**
* Create a new job instance.
*/
public function __construct(User $user, string $resetLink)
{
$this->user = $user;
$this->resetLink = $resetLink;
}
/**
* Execute the job.
*/
public function handle(): void
{
Mail::to($this->user->email)->send(new ForgottenPassword($this->resetLink));
}
}