我正在尝试使用requests.post发送带有Mailgun API的附件的电子邮件。
在他们的文档中,他们警告在发送附件时必须使用 multipart / form-data编码,我正在尝试这样做:
import requests
MAILGUN_URL = 'https://api.mailgun.net/v3/sandbox4f...'
MAILGUN_KEY = 'key-f16f497...'
def mailgun(file_url):
"""Send an email using MailGun"""
f = open(file_url, 'rb')
r = requests.post(
MAILGUN_URL,
auth=("api", MAILGUN_KEY),
data={
"subject": "My subject",
"from": "my_email@gmail.com",
"to": "to_you@gmail.com",
"text": "The text",
"html": "The<br>html",
"attachment": f
},
headers={'Content-type': 'multipart/form-data;'},
)
f.close()
return r
mailgun("/tmp/my-file.xlsx")
我已经定义了标头以确保内容类型是 multipart / form-data ,但是当我运行代码时,我得到400状态,原因是:错误请求
怎么了? 我需要确定我正在使用multipart / form-data 并且我正确使用了附件参数
答案 0 :(得分:11)
您需要使用files
关键字参数。 Here是请求中的文档。
来自Mailgun文档的一个例子:
def send_complex_message():
return requests.post(
"https://api.mailgun.net/v3/YOUR_DOMAIN_NAME/messages",
auth=("api", "YOUR_API_KEY"),
files=[("attachment", open("files/test.jpg")),
("attachment", open("files/test.txt"))],
data={"from": "Excited User <YOU@YOUR_DOMAIN_NAME>",
"to": "foo@example.com",
"cc": "baz@example.com",
"bcc": "bar@example.com",
"subject": "Hello",
"text": "Testing some Mailgun awesomness!",
"html": "<html>HTML version of the body</html>"})
所以将你的POST修改为:
r = requests.post(
MAILGUN_URL,
auth=("api", MAILGUN_KEY),
files = [("attachment", f)],
data={
"subject": "My subject",
"from": "my_email@gmail.com",
"to": "to_you@gmail.com",
"text": "The text",
"html": "The<br>html"
},
headers={'Content-type': 'multipart/form-data;'},
)
这应该适合你。