Files
ProxyPanel/app/Mail/userExpireWarning.php
兔姬桑 5689018af0 添加Bark
整合 推送通知功能;
优化、简化系统设置选项;
2020-08-05 03:20:25 +08:00

38 lines
877 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 userExpireWarning extends Mailable implements ShouldQueue
{
use Queueable, SerializesModels;
protected $id; // 邮件记录ID
protected $lastCanUseDays; // 剩余可用天数
public function __construct($id, $lastCanUseDays)
{
$this->id = $id;
$this->lastCanUseDays = $lastCanUseDays;
}
public function build()
{
return $this->view('emails.userExpireWarning')->subject('账号过期提醒')->with([
'lastCanUseDays' => $this->lastCanUseDays
]);
}
// 发件失败处理
public function failed(Exception $e)
{
NotificationLog::query()->where('id', $this->id)->update(['status' => -1, 'error' => $e->getMessage()]);
}
}