Yahoo邮箱前几天突然被封了,现在尝试登录提示:Sorry, we don't recognise this email address. 我没有发过任何垃圾邮件,最近有修改了登录密码,切换过节点IP,是不是因此触发了Yahoo的风控,请问要怎么解封?
4条回答 默认 最新
关注让【道友老李】来帮你解答,本回答参考gpt编写,并整理提供,如果还有疑问可以点击头像关注私信或评论。
如果答案让您满意,请采纳、关注,非常感谢!
可能是因为频繁修改密码和切换IP触发了Yahoo的风控系统,导致账号被封。解封的方法通常是联系Yahoo客服或者通过他们的自助解封页面来申请解封。你需要提供一些个人信息和验证方式来证明你是账号的合法拥有者。以下是一个简单的Python示例代码,可以用来发送解封请求邮件给Yahoo客服:import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart email = 'your_email@yahoo.com' password = 'your_password' to_email = 'yahoo_customer_service@yahoo.com' subject = 'Request for Account Unblocking' message = 'Hello Yahoo Customer Service,\n\nI am writing to request the unblocking of my Yahoo account. My account was recently blocked and I believe it was due to some security measures triggered by mistake. I have not sent any spam emails or violated any terms of service. I would greatly appreciate it if you could review and unblock my account as soon as possible. Thank you.\n\nSincerely,\nYour Name' msg = MIMEMultipart() msg['From'] = email msg['To'] = to_email msg['Subject'] = subject msg.attach(MIMEText(message, 'plain')) server = smtplib.SMTP('smtp.mail.yahoo.com', 587) server.starttls() server.login(email, password) text = msg.as_string() server.sendmail(email, to_email, text) server.quit() print('Your request for account unblocking has been sent to Yahoo Customer Service. Please wait for their response.')请将代码中的
your_email@yahoo.com和your_password替换为您的Yahoo邮箱地址和密码,并确保允许第三方应用访问您的Yahoo邮箱。发送邮件后,请耐心等待Yahoo客服的回复。祝您好运!解决 无用评论 打赏 举报