如何修复ssl.SSL错误:[SSL:错误版本号]错误的版本号(_ssl.c:1056)?

5sxhfpxr  于 2022-11-14  发布在  其他
关注(0)|答案(4)|浏览(295)

我尝试用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()

你知道错在哪里吗?

c7rzv4ha

c7rzv4ha1#

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)

这要归功于real python tutorial

eh57zj3b

eh57zj3b2#

通过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()

关闭不太安全的应用程序,让它在你的gmail上工作

slwdgvem

slwdgvem3#

这就是我解决同样问题方法

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}\r\nTo: {where_to_email}\r\nContent-Type: text/plain; charset="utf-8"\r\nSubject: {theme}\r\n\r\n'
msg += message
session.sendmail(sender, where_to_email, msg.encode('utf8'))
session.quit()
uoifb46i

uoifb46i4#

谷歌不再让你关闭这个功能,这意味着它只是不会工作,无论你做什么,雅虎似乎是同样的方式

相关问题