mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 17:31:49 +08:00 
			
		
		
		
	update: remind mail i18n
This commit is contained in:
		| @@ -168,7 +168,7 @@ class TicketController extends Controller | ||||
|         $user = User::find($request->session()->get('id')); | ||||
|         $limit = config('v2board.commission_withdraw_limit', 100); | ||||
|         if ($limit > ($user->commission_balance / 100)) { | ||||
|             abort(500, __('The current required minimum withdrawal commission is', ['limit' => $limit])); | ||||
|             abort(500, __('The current required minimum withdrawal commission is :limit', ['limit' => $limit])); | ||||
|         } | ||||
|         DB::beginTransaction(); | ||||
|         $subject = __('[Commission Withdrawal Request] This ticket is opened by the system'); | ||||
|   | ||||
| @@ -12,14 +12,15 @@ class MailService | ||||
|     public function remindTraffic (User $user) | ||||
|     { | ||||
|         if (!$user->remind_traffic) return; | ||||
|         $trafficTotal = $user->u + $user->d; | ||||
|         if (!$this->remindTrafficIsWarnValue($user->u, $user->d, $user->transfer_enable)) return; | ||||
|         $flag = CacheKey::get('LAST_SEND_EMAIL_REMIND_TRAFFIC', $user->id); | ||||
|         if (Cache::get($flag)) return; | ||||
|         if (!Cache::put($flag, 1, 24 * 3600)) return; | ||||
|         SendEmailJob::dispatch([ | ||||
|             'email' => $user->email, | ||||
|             'subject' => '在' . config('v2board.app_name', 'V2board') . '的流量使用已达到80%', | ||||
|             'subject' => __('The traffic usage in :app_name has reached 80%', [ | ||||
|                 'app_name' => config('v2board.app_name', 'V2board') | ||||
|             ]), | ||||
|             'template_name' => 'remindTraffic', | ||||
|             'template_value' => [ | ||||
|                 'name' => config('v2board.app_name', 'V2Board'), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user