diff --git a/application/api/controller/Plagiarism.php b/application/api/controller/Plagiarism.php
index 9d0020b7..98ab62a8 100644
--- a/application/api/controller/Plagiarism.php
+++ b/application/api/controller/Plagiarism.php
@@ -37,14 +37,14 @@ class Plagiarism extends Base
* article_id 必填
* file_url 选填;不传则按 article_id 在 t_article_file 找 manuscirpt
* editor_id 选填;触发人 user_id(前端拿不到也可以传 0)
- * check_type 选填;full(默认全文)| body_only(正文)| both(各提交一条)
+ * type 选填;full(默认全文)| body_only(正文)| both(各提交一条)
*/
public function submit()
{
$articleId = intval($this->request->param('article_id', 0));
$fileUrl = trim($this->request->param('file_url', ''));
$editorId = intval($this->request->param('editor_id', 0));
- $checkType = trim($this->request->param('check_type', 'full'));
+ $checkType = trim($this->request->param('type', 'full'));
if ($articleId <= 0) {
return jsonError('article_id required');
diff --git a/application/api/controller/Production.php b/application/api/controller/Production.php
index 0b67c0d1..6d7bdf54 100644
--- a/application/api/controller/Production.php
+++ b/application/api/controller/Production.php
@@ -3345,14 +3345,23 @@ class Production extends Base
return jsonError('To the editor: PROOF is the final form before the article goes online. The PROOF link step not be opened if you have not completed the previous steps.');
}
//发送邮件
+// $tt = "Dear Author,
";
+// $tt .= "Please confirm proof of your manuscript on the submission website within 48 hours. (https://submission.tmrjournals.com)
";
+// // $tt .= "Click here to confirm the proof.
";
+// $tt .= "Click here to view and confirm the proof.
";
+// $tt .= "If your response is not received, we will regard the author's consent to the version if the time exceeds.
";
+// $tt .= "If you have any questions, please feel free to contact us.
";
+// $tt .= "Note: Double-check the authors' information carefully to ensure they are correct.";
$tt = "Dear Author,
";
- $tt .= "Please confirm proof of your manuscript on the submission website within 48 hours. (https://submission.tmrjournals.com)
";
- // $tt .= "Click here to confirm the proof.
";
+ $tt .= "We hope this email finds you well.
";
+ $tt .= "The proof version of your manuscript has been generated and uploaded to our editorial system.Please log in to the system and confirm the proof within 48 hours:
";
+ $tt .= "Manuscript ID: ".$article_info["accept_sn"]."
";
+ $tt .= "Title:".$article_info["title"]."
";
$tt .= "Click here to view and confirm the proof.
";
- $tt .= "If your response is not received, we will regard the author's consent to the version if the time exceeds.
";
- $tt .= "If you have any questions, please feel free to contact us.
";
- $tt .= "Note: Double-check the authors' information carefully to ensure they are correct.";
-
+ $tt .= "Please carefully check the proof, including the text, figures, tables, references, author information, affiliations, spelling, and formatting. If any corrections are needed, please mark them clearly on the proof or submit comments through the system.
";
+ $tt .= "If we do not receive your confirmation by ".date("Y-m-d", strtotime("+3 days")).", the proof will be considered approved in its current form. Please note that no further revisions will be accepted after online confirmation.
";
+ $tt .= "Thank you for your time and cooperation. Should you have any questions, please feel free to contact us.
";
+ $tt .= "Best regards,
Biomedical Engineering Communications
Email: bmec@tmrjournals.com
Website: https://www.tmrjournals.com/bmec/";
// $maidata['email'] = '751475802@qq.com';
$maidata['email'] = $user_info['email'];