Files
newznab-tmux/app/Jobs/SendPasswordResetEmail.php
T
2019-02-06 12:09:33 +01:00

50 lines
1014 B
PHP

<?php
namespace App\Jobs;
use App\Mail\PasswordReset;
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 SendPasswordResetEmail implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* @var \App\Models\User
*/
private $user;
/**
* @var string
*/
private $newPass;
/**
* Create a new job instance.
*
* @param \App\Models\User $user
* @param string $newPass
*/
public function __construct($user, $newPass)
{
$this->user = $user;
$this->newPass = $newPass;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
Mail::to($this->user->email)->send(new PasswordReset($this->user, $this->newPass));
}
}