mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
1. 修复节点信息获取错误的问题 2. 优化首页公告显示 3. 修复回复工单时按回车导致报错的问题 4. 修改用户编辑与添加排版 5. 修复潜在的IE兼容问题 6. 统一Table元素格式 7. 优化返利界面 8. 添加了封禁时间倒计时 9. 对非付费用户,首页添加提示购买宣传语
41 lines
894 B
PHP
41 lines
894 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Http\Models\EmailLog;
|
|
use Exception;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class newTicket extends Mailable implements ShouldQueue
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
protected $id; // 邮件记录ID
|
|
protected $title; // 工单标题
|
|
protected $content; // 工单内容
|
|
|
|
public function __construct($id, $title, $content)
|
|
{
|
|
$this->id = $id;
|
|
$this->title = $title;
|
|
$this->content = $content;
|
|
}
|
|
|
|
public function build()
|
|
{
|
|
return $this->view('emails.newTicket')->subject('新工单提醒')->with([
|
|
'title' => $this->title,
|
|
'content' => $this->content
|
|
]);
|
|
}
|
|
|
|
// 发件失败处理
|
|
public function failed(Exception $e)
|
|
{
|
|
EmailLog::query()->where('id', $this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
|
|
}
|
|
}
|