Midjourney充错了,想充值一个月,不小心充成一年,发邮件退款,直接给我封禁了,对方给的理由是账号被封禁,不允许退款,这个账号买错了之后就没使用过,因为怕退款失败,现在直接给我封了,这种情况怎么办,有没有兄弟指点一下

Midjourney充错了,想充值一个月,不小心充成一年,发邮件退款,直接给我封禁了,对方给的理由是账号被封禁,不允许退款,这个账号买错了之后就没使用过,因为怕退款失败,现在直接给我封了,这种情况怎么办,有没有兄弟指点一下

上午好☀️☀️☀️️
本答案参考通义千问
你遇到的情况是 Midjourney 账号因误充值一年而被封禁,且对方以“账号被封禁,不允许退款”为由拒绝处理。这种情况下,确实令人困扰。下面我将为你详细分析问题,并提供可行的解决方案,包括重点部分加粗、有序列表和可能的代码/操作建议(如果有的话)。
操作步骤:
理由:
注意:
邮件内容要点:
示例邮件内容:
Subject: Request for Refund and Account Unban
Dear Midjourney Support Team,
I am writing to request a refund for my recent accidental payment of $20 for a one-year subscription, which I mistakenly selected instead of a one-month plan.
I have not used this account at all, and I only made the payment by mistake. I was concerned about the possibility of the refund being denied, so I did not use it. However, I was surprised to find that my account has been banned without any explanation.
I kindly ask you to review my case and consider either:
1. Refunding the $20 payment, or
2. Releasing the ban on my account.
I have attached screenshots of the payment and order confirmation for your reference.
Thank you for your time and understanding.
Best regards,
[Your Name]
[Your Email Address]
[Order ID / Payment Confirmation Number]
操作建议:
优点:
适用情况:
注意事项:
注册新账号并尝试退款
向 Midjourney 官方提交正式申诉邮件
在 Discord 或社区中寻求帮助
保留所有交易记录和沟通记录
如有必要,可考虑法律途径
目前 Midjourney 没有开放 API 来直接控制退款或解封,因此无法通过代码实现自动退款或解封。但你可以编写一个脚本,用于自动化发送申诉邮件(需配合 SMTP 服务)。
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
# 邮件设置
sender_email = "your_email@example.com"
receiver_email = "support@midjourney.com"
password = "your_password"
# 创建邮件对象
msg = MIMEMultipart()
msg['From'] = sender_email
msg['To'] = receiver_email
msg['Subject'] = "Request for Refund and Account Unban"
# 邮件正文
body = """Dear Midjourney Support Team,
I am writing to request a refund for my recent accidental payment of $20 for a one-year subscription, which I mistakenly selected instead of a one-month plan.
I have not used this account at all, and I only made the payment by mistake. I was concerned about the possibility of the refund being denied, so I did not use it. However, I was surprised to find that my account has been banned without any explanation.
I kindly ask you to review my case and consider either:
1. Refunding the $20 payment, or
2. Releasing the ban on my account.
I have attached screenshots of the payment and order confirmation for your reference.
Thank you for your time and understanding.
Best regards,
[Your Name]
[Your Email Address]
[Order ID / Payment Confirmation Number]
"""
msg.attach(MIMEText(body, 'plain'))
# 添加附件(可选)
filename = "payment_screenshot.png"
attachment = open(filename, "rb")
part = MIMEBase('application', 'octet-stream')
part.set_payload(attachment.read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', f"attachment; filename= {filename}")
msg.attach(part)
# 发送邮件
try:
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login(sender_email, password)
text = msg.as_string()
server.sendmail(sender_email, receiver_email, text)
print("Email sent successfully.")
except Exception as e:
print(f"Failed to send email: {e}")
finally:
server.quit()
⚠️ 注意:你需要使用自己的邮箱(如 Gmail)并开启 SMTP 访问权限,同时替换
your_email和password。
如果你愿意,我可以帮你进一步优化申诉邮件内容或协助撰写更专业的版本。