From 60c8b7d532618320478288db3fd6fa55c85ac71a Mon Sep 17 00:00:00 2001 From: wangjinlei <751475802@qq.com> Date: Thu, 11 Jun 2026 14:51:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A8=E5=B9=BF=E9=A2=91=E7=8E=87=E6=9B=B4?= =?UTF-8?q?=E6=94=B9=EF=BC=8C=E5=8D=8A=E4=B8=AA=E6=9C=88=E5=8F=91=E4=B8=80?= =?UTF-8?q?=E5=B0=81=E6=98=AF=E5=8F=AF=E8=A1=8C=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/EmailClient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/api/controller/EmailClient.php b/application/api/controller/EmailClient.php index b243f43b..e9a4af92 100644 --- a/application/api/controller/EmailClient.php +++ b/application/api/controller/EmailClient.php @@ -2282,7 +2282,7 @@ class EmailClient extends Base set_time_limit(120); $sendDate = date('Y-m-d', strtotime('+1 day')); - $noRepeatDaysDefault = 30; + $noRepeatDaysDefault = 15; $factories = Db::name('promotion_factory') ->alias('f') @@ -2354,7 +2354,7 @@ class EmailClient extends Base $expertType = intval($factory['expert_type']); // 内部受众(type∈{1..4}):默认 60 天频次(约稿场景);外部 expert 库(type=5)沿用 30 天 - $noRepeatDays = $expertType === 5 ? $noRepeatDaysDefault : 60; + $noRepeatDays = $expertType === 5 ? $noRepeatDaysDefault : 20; if ($expertType === 5) { $fields = $this->resolveFieldsByFetchIds($factory['fetch_ids']);