掘金 后端 ( ) • 2021-09-19 16:36
msg.attach(MIMEText("照片", 'html', 'UTF-8')) # 添加邮件文本信息。
smtp .login(from_qq_mail, pwd) # 登录邮箱。
smtp.sendmail(from_qq_mail, to_qq_mail, msg.as_string()) # 发送邮箱 ... 阅读全文