我想使用python发送带有名称的附件

时间:2018-09-17 06:39:04

标签: python-3.x email

以下代码发送附件,但未在附件中附加名称。

    filename = "List of Passwords"
    instance_password = open(password_pdf, 'rb')
    img8 = MIMEImage(instance_password.read())
    instance_password.close()
    img8.add_header('content-ID', '<{name1}>; filename={name2}'.format(name1=password_pdf, name2=filename))
    msg.attach(img8)

我需要对带有附件的名称进行哪些更改?

0 个答案:

没有答案