From eed3964dee27000d8a3710e963111667dadeeb12 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 22 Jul 2025 10:09:50 +0800 Subject: [PATCH] . --- send_email_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/send_email_module.py b/send_email_module.py index efd6939..6a9a587 100644 --- a/send_email_module.py +++ b/send_email_module.py @@ -109,9 +109,9 @@ def send_email(key, to_address, subject, body_template, recipient_name, # 构造 MIME 邮件 msg = MIMEMultipart() if language == "chinese": - msg['From'] = formataddr(("深圳果冻人工智能", config['email user'].strip())) + msg['From'] = formataddr(("果冻人工智能", config['email user'].strip())) else: - msg['From'] = formataddr(("Jelly Drops LLC Sales Team", config['email user'].strip())) + msg['From'] = formataddr(("Jelly Drops LLC", config['email user'].strip())) msg['To'] = to_address msg['Subject'] = subject