尝试使用 smtp 发送简单字母时出现 UnicodeDecodeError

UnicodeDecodeError when try to send simple letter using smtp

我在使用 smtplib 发送简单的信件时遇到问题。我的程序在 smtplib.SMTP('smtp.gmail.com', port=587) 这一行停止运行并出现错误:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 7: invalid continuation byte。我该如何解决这个问题?

文件编码:UTF-8(所有符号均为英文)

Python版本:3.6.4

完整节目:

import smtplib
from email.message import EmailMessage

mail_addr = "myemail@gmail.com"

msg = EmailMessage()
msg['From'] = mail_addr
msg['To'] = "myemail@gmail.com"
msg['Subject'] = "Hello!"
msg.set_content('Email body')

email_address = "myemail@gmail.com"
email_password = "password"

body = "Hello, world!"

server = smtplib.SMTP('smtp.gmail.com', port=587)
server.ehlo()
server.starttls()
server.login(email_address, email_password)
server.send_message(msg=msg, from_addr=mail_addr, to_addrs=mail_addr)

print('Email sent successfully')

完整输出:

Traceback (most recent call last):
  File "C:\Program Files\JetBrains\PyCharm Community Edition 2017.3.3\helpers\pydev\pydev_run_in_console.py", line 53, in run_file
    pydev_imports.execfile(file, globals, locals)  # execute the script
  File "C:\Program Files\JetBrains\PyCharm Community Edition 2017.3.3\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in execfile
    exec(compile(contents+"\n", file, 'exec'), glob, loc)
  File "C:/MyPrograms/Python/docsCreator/main/starter.py", line 21, in <module>
    server = smtplib.SMTP('smtp.gmail.com', port=587)
  File "C:\Users\Dmitry\AppData\Local\Programs\Python\Python36-32\Lib\smtplib.py", line 261, in __init__
    fqdn = socket.getfqdn()
  File "C:\Users\Dmitry\AppData\Local\Programs\Python\Python36-32\Lib\socket.py", line 673, in getfqdn
    hostname, aliases, ipaddrs = gethostbyaddr(name)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 7: invalid continuation byte
PyDev console: starting.

问题可能出在您的主机名上吗? 来自 socket.py:

def getfqdn(name=''):
    name = name.strip()
    if not name or name == '0.0.0.0':
        name = gethostname()
    try:
        hostname, aliases, ipaddrs = gethostbyaddr(name)
    except error:
        pass
...

socket.gethostname() 的输出是什么?