mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-07 04:59:36 +00:00
34 lines
715 B
PHP
34 lines
715 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Http\Models\NotificationLog;
|
|
use Exception;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class userExpireWarningToday extends Mailable implements ShouldQueue
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
protected $id; // 邮件记录ID
|
|
|
|
public function __construct($id)
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function build()
|
|
{
|
|
return $this->view('emails.userExpireWarningToday')->subject('账号过期提醒');
|
|
}
|
|
|
|
// 发件失败处理
|
|
public function failed(Exception $e)
|
|
{
|
|
NotificationLog::query()->whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
|
|
}
|
|
}
|