From fbad953af367789cefc787192be024d4a091932a Mon Sep 17 00:00:00 2001 From: chengxl Date: Tue, 2 Sep 2025 17:10:33 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=AE=E4=BB=B6=E6=A8=A1=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/common/Reviewer.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/application/common/Reviewer.php b/application/common/Reviewer.php index 4f89009..78247aa 100644 --- a/application/common/Reviewer.php +++ b/application/common/Reviewer.php @@ -787,6 +787,10 @@ class Reviewer if(empty($title) || empty($content)){ continue; } + $pre = Env::get('emailtemplete.pre'); + $net = Env::get('emailtemplete.net'); + $net1 = str_replace("{{email}}",trim($email),$net); + $content=$pre.$content.$net1; //发送邮件 $memail = empty($aJournal['email']) ? '' : $aJournal['email']; $mpassword = empty($aJournal['epassword']) ? '' : $aJournal['epassword'];