Я делаю программу на Python для автоматической отправки eamil с прикрепленным файлом.
sendHTML - это содержимое электронной почты.и без присоединения, это работает хорошо.
Однако при добавлении файлов, подобных приведенному ниже источнику, возникает ошибка: данные не должны быть строкой.Итак, я изменил код, как показано ниже, но он также не работал.Пожалуйста, спасите меня: (
=============== изменил код =================================================
files = {'json' : (None, json.dumps(sMailBody).encode("utf-8"), 'application/json' ),'file': (open('''20180430_'18 Tizen Store Buyer Report v2.4.xlsx''', 'rb'), 'application/octet-stream')}
headers = {'authorization': 'Bearer xx', "Content-Type" : "multipart/form-data"}
res = requests.post(url, headers=headers, files=files)
=================== источник источника ========================
sendHTML = str(fullReportFrameSoup) -
url = "the url of samsung"
sMailBody = {
--> this is my company mail system's Rest API
"resourceVO" :
{
"email" : "xxx@samsung.com",
"localeStr" : "ko_KR",
"encoding" : "utf-8",
"timeZone" : "GMT+9",
},
"sendMailVO" :
{
"contentText" : sendHTML,
"subject" : "[Tizen Store] 일일통계",
"docSecuType" : "PERSONAL",
"contentType" : "HTML",
"from" :
{
"email" : "xxx@samsung.com"
},
"attachs" :[],
"recipients" :
[
{
"email" : "xxx@samsung.com",
"recipientType" : "TO"
}
]
}
}
json_data = json.dumps(sMailBody).encode("utf-8")
files = {'file': ('''20180430_'18 Tizen Store Buyer Report v2.4.xlsx''', open('''20180430_'18 Tizen Store Buyer Report v2.4.xlsx''', 'rb') , 'application/vnd.ms-excel', {'Expires': '0'})}-->
headers = {'authorization': 'Bearer xxx', "Content-Type" : "application/json"}
res = requests.post(url, data=json_data, headers=headers, files=files)