mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 16:03:04 +00:00
45 lines
1.0 KiB
PHP
45 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Models\NotificationLog;
|
|
use Exception;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class resetPassword extends Mailable implements ShouldQueue
|
|
{
|
|
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
protected $id; // 邮件记录ID
|
|
protected $resetPasswordUrl; // 重置密码URL
|
|
|
|
public function __construct($id, $resetPasswordUrl)
|
|
{
|
|
$this->id = $id;
|
|
$this->resetPasswordUrl = $resetPasswordUrl;
|
|
}
|
|
|
|
public function build(): resetPassword
|
|
{
|
|
return $this->view('emails.resetPassword')->subject('重置密码')->with(
|
|
[
|
|
'resetPasswordUrl' => $this->resetPasswordUrl,
|
|
]
|
|
);
|
|
}
|
|
|
|
// 发件失败处理
|
|
public function failed(Exception $e): void
|
|
{
|
|
NotificationLog::whereId($this->id)->update(
|
|
['status' => -1, 'error' => $e->getMessage()]
|
|
);
|
|
}
|
|
|
|
}
|