如何修复 SSL.SSLError: [SSL: WRONG_VERSION_NUMBER] 错误的版本号 (_ssl.



我正在尝试使用 python 发送电子邮件,但它一直说ssl.SSLError: [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1056).这是我的代码:

server = smtplib.SMTP_SSL('smtp.mail.com', 587)
server.login("something0@mail.com", "password")
server.sendmail(
"something0@mail.com", 
"something@mail.com", 
"email text")
server.quit()

你知道出了什么问题吗?

SSL的端口是 465 而不是 587,但是当我使用SSL时,邮件到达了垃圾邮件。

对我来说,有效的方法是使用TLS而不是常规SMTP而不是SMTP_SSL

请注意,这是一种安全的方法,因为TLS也是加密协议(如SSL(。

import smtplib, ssl
port = 587  # For starttls
smtp_server = "smtp.gmail.com"
sender_email = "my@gmail.com"
receiver_email = "your@gmail.com"
password = input("Type your password and press enter:")
message = """
Subject: Hi there
This message is sent from Python."""
context = ssl.create_default_context()
with smtplib.SMTP(smtp_server, port) as server:
server.ehlo()  # Can be omitted
server.starttls(context=context)
server.ehlo()  # Can be omitted
server.login(sender_email, password)
server.sendmail(sender_email, receiver_email, message)

感谢真正的Python教程。

这就是我解决相同问题的方式

import ssl

sender = "youremail@yandex.ru"
password = "password123"

where_to_email = "reciever@anymail.com"
theme = "this is subject"
message = "this is your message, say hi to reciever"

sender_password = password
session = smtplib.SMTP_SSL('smtp.yandex.ru', 465)
session.login(sender, sender_password)
msg = f'From: {sender}rnTo: {where_to_email}rnContent-Type: text/plain; charset="utf-8"rnSubject: {theme}rnrn'
msg += message
session.sendmail(sender, where_to_email, msg.encode('utf8'))
session.quit()

此外,如果您想使用yandex邮件you must在设置中打开"Protal Code"。

谷歌不再让你关闭此功能,这意味着无论你做什么它都不起作用,雅虎似乎也是这样

通过python发送电子邮件的代码:

import smtplib , ssl
import getpass
server = smtplib.SMTP_SSL("smtp.gmail.com",465)
server.ehlo()
server.starttls
password = getpass.getpass()   # to hide your password while typing (feels cool)
server.login("example@gmail.com", password)
server.sendmail("example@gmail.com" , "sender-example@gmail.com" , "I am trying out python email through coding")
server.quit()

#turn 关闭安全性较低的应用程序,使其在您的Gmail上正常工作

最新更新