【发布时间】:2018-10-16 10:52:42
【问题描述】:
您好,我正在尝试找出我收到此错误的原因。它让我有点困惑。我正在使用 Python 3.6
logger = logging.getLogger(__name__)
message_text = 'this is a test body'
message = MIMEText(message_text)
message['to'] = 'me@example.com'
message['from'] = 'you@example.com'
message['subject'] = 'test subject'
logger.debug('++++++++++++++++++++++++++++++++++')
logger.debug(message)
logger.debug('++++++++++++++++++++++++++++++++++')
try:
raw = base64.urlsafe_b64encode(message.encode('UTF-8')).decode('ascii')
except Exception as e:
logger.debug('---------------')
logger.debug(e)
logger.debug('---------------')
这是输出。
++++++++++++++++++++++++++++++++++
Content-Type: text/plain; charset="us-ascii".
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit.
to: me@example.com
from: you@example.com
subject: test subject
this is a test body
++++++++++++++++++++++++++++++++++
---------------
'MIMEText' object has no attribute 'encode'
---------------
【问题讨论】:
-
我不知道 MIMEText,但显然您的
MIMEText不是字符串,因此您需要检查文档以了解如何获取内部字符串并将编码然后应用于字符串.
标签: python python-3.x mime mime-message