国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

網(wǎng)頁(yè)爬蟲(chóng) - python+smtp發(fā)送郵件附件問(wèn)題

瀏覽:145日期:2022-06-30 17:08:30

問(wèn)題描述

文件是txt或者word格式的,但是要求附件發(fā)送過(guò)去是pdf格式的,smpt有沒(méi)有什么參數(shù)是可以設(shè)置的,我設(shè)置了_subtype='pdf',最后附件打開(kāi)會(huì)報(bào)錯(cuò),說(shuō)不是一個(gè)pdf文件,打不開(kāi)

import smtplibfrom email.mime.multipart import MIMEMultipartfrom email.mime.application import MIMEApplicationimport tracebackimport osserver=smtplib.SMTP()server.connect('smtp.163.com')server.login('XXXXXX@163.com','YYYYYY')msg=MIMEMultipart(’’)msg[’From’]='XXXXXX@163.com'msg[’Subject’]='opp'part = MIMEApplication(open('D:log.txt', ’rb’).read(),_subtype=’pdf’)#filetype='pdf'filetype = os.path.splitext('D:log.txt')[-1][1:]newfilename = ’resume’ + ’.’ + filetypepart.add_header(’Content-Disposition’, ’attachment’, filename=newfilename)msg.attach(part)msg[’To’]='TTTTTT@163.com'server.send_message(msg)

求解直接報(bào)filetype改成pdf也會(huì)文件報(bào)錯(cuò)

問(wèn)題解答

回答1:

SMTP is the protocol you are sending the completed email with, the MIME type is the content type of the attachment as declared in the email and the actual content type the file has. If you want to send a doc file as pdf you have to convert it first.

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 泗水县| 镇远县| 石嘴山市| 长顺县| 三穗县| 古浪县| 河津市| 安岳县| 松原市| 桦甸市| 沙坪坝区| 彭阳县| 耒阳市| 大厂| 澄江县| 临西县| 茂名市| 信宜市| 宁城县| 和龙市| 华容县| 荆门市| 哈密市| 璧山县| 古田县| 桂林市| 汾阳市| 康保县| 林西县| 台安县| 濮阳市| 安徽省| 平远县| 江西省| 塔城市| 芮城县| 交口县| 大化| 延长县| 鄂伦春自治旗| 淮北市|