Spaces:
Runtime error
Runtime error
远兮
commited on
Commit
·
03f0d4a
1
Parent(s):
550a205
修改邮箱为灵思
Browse files
chatgpt-next-web/service.py
CHANGED
@@ -36,11 +36,11 @@ def generate_verification_code():
|
|
36 |
# 发送验证码到用户邮箱(这里只是模拟发送过程)
|
37 |
def send_verification_code(email, code):
|
38 |
my = MyEmail()
|
39 |
-
my.user = "[email protected]"
|
40 |
my.passwd = "todo"
|
|
|
41 |
my.to_list = [email]
|
42 |
-
my.tag = "Chat注册验证码"
|
43 |
-
my.txt = f"【{code}】Chat
|
44 |
my.send()
|
45 |
|
46 |
|
|
|
36 |
# 发送验证码到用户邮箱(这里只是模拟发送过程)
|
37 |
def send_verification_code(email, code):
|
38 |
my = MyEmail()
|
|
|
39 |
my.passwd = "todo"
|
40 |
+
my.user = "[email protected]"
|
41 |
my.to_list = [email]
|
42 |
+
my.tag = "灵思互动Chat注册验证码"
|
43 |
+
my.txt = f"【{code}】Chat邮箱注册验证码,您正在注册灵思互动Chat账号,请勿泄露。"
|
44 |
my.send()
|
45 |
|
46 |
|