mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	update
This commit is contained in:
		| @@ -48,7 +48,8 @@ class SendRemindMail extends Command | |||||||
|     } |     } | ||||||
|      |      | ||||||
|     private function remindExpire ($user) { |     private function remindExpire ($user) { | ||||||
|         if (($user->expired_at - 86400) < time() && $user->expired_at > time()) { |         if ($user->expired_at > time()) return; | ||||||
|  |         if ($user->expired_at - 86400 > time()) return; | ||||||
|         SendEmail::dispatch([ |         SendEmail::dispatch([ | ||||||
|             'email' => $user->email, |             'email' => $user->email, | ||||||
|             'subject' => '在' . config('v2board.app_name', 'V2board') . '的服务即将到期', |             'subject' => '在' . config('v2board.app_name', 'V2board') . '的服务即将到期', | ||||||
| @@ -58,11 +59,13 @@ class SendRemindMail extends Command | |||||||
|             ] |             ] | ||||||
|         ]); |         ]); | ||||||
|     } |     } | ||||||
|     } |  | ||||||
|  |  | ||||||
|     private function remindTraffic ($user) { |     private function remindTraffic ($user) { | ||||||
|         if ($this->remindTrafficIsWarnValue(($user->u + $user->d), $user->transfer_enable)) { |         if (!$this->remindTrafficIsWarnValue(($user->u + $user->d), $user->transfer_enable)) return; | ||||||
|             if (MailLog::where('created_at', '>=', strtotime(date('Y-m-1'))->count > 0)) return; |         $sendCount = MailLog::where('created_at', '>=', strtotime(date('Y-m-1'))) | ||||||
|  |             ->where('template_name', 'mail.sendRemindTraffic') | ||||||
|  |             ->count(); | ||||||
|  |         if ($sendCount > 0) return; | ||||||
|         SendEmail::dispatch([ |         SendEmail::dispatch([ | ||||||
|             'email' => $user->email, |             'email' => $user->email, | ||||||
|             'subject' => '在' . config('v2board.app_name', 'V2board') . '的流量使用已达到80%', |             'subject' => '在' . config('v2board.app_name', 'V2board') . '的流量使用已达到80%', | ||||||
| @@ -72,7 +75,6 @@ class SendRemindMail extends Command | |||||||
|             ] |             ] | ||||||
|         ]); |         ]); | ||||||
|     } |     } | ||||||
|     } |  | ||||||
|      |      | ||||||
|     private function remindTrafficIsWarnValue ($ud, $transfer_enable) { |     private function remindTrafficIsWarnValue ($ud, $transfer_enable) { | ||||||
|         if ($ud <= 0) return false; |         if ($ud <= 0) return false; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user