update: remind mail i18n

This commit is contained in:
tokumeikoi
2021-08-28 15:32:38 +09:00
parent 4cebeed2d7
commit 982c47d0b4
4 changed files with 10 additions and 7 deletions

View File

@ -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'),