Files
ProxyPanel/app/Mail/userTrafficWarning.php
兔姬桑 66c3c53038 2.4.0 phase 1: 大量代码优化与改写
1. models 关系规范化;
2. 本地-在线 订单处理改写;
3. 优化用户界面节点的查表操作;
4. 半修复 VNet SSR版需要面板主动提交用户信息变动的问题;(节点等级,用户分组,Node信息修改 主动通知节点尚未添加);
5. 简化并提取出了 返利佣金相关处理逻辑;
2020-08-16 12:55:18 +08:00

34 lines
860 B
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 userTrafficWarning extends Mailable implements ShouldQueue {
use Queueable, SerializesModels;
protected $id; // 邮件记录ID
protected $usedPercent; // 已使用百分比
public function __construct($id, $usedPercent) {
$this->id = $id;
$this->usedPercent = $usedPercent;
}
public function build(): userTrafficWarning {
return $this->view('emails.userTrafficWarning')->subject('流量警告')->with([
'usedPercent' => $this->usedPercent
]);
}
// 发件失败处理
public function failed(Exception $e): void {
NotificationLog::whereId($this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
}
}