我正在尝试通过电子邮件发送由 Weasyprint 与 Sendgrid 生成的 PDF。Sendgrid Python 库抛出了一个错误HTTP Error 400: Bad Request
,虽然描述性不是很好,但我认为这是由于附件编码存在问题(Sendgrid 需要 base64 中的附件)。
html_page, css_page = generatePDF(url) # Generates HTML and CSS from URL
pdf = html_page.write_pdf(stylesheets=css_page) # Compiles PDF from HTML and CSS as bytes string
pdf = base64.b64encode(pdf).decode() # Base64 encodes PDF
data = {
'personalizations' : [
{
'to' : [
{
'email' : data['to']
}
],
'subject' : data['subject']
}
],
'from' : {
'email' : data['from']
},
'content' : [
{
'type' : 'text/plain',
'value' : data['text']
},
{
'type' : 'text/html',
'value' : '<html><p>{}</p></html>'.format(data['html'])
}
],
'reply_to' : {
'name' : '{}'.format(sender_name),
'email' : '{}'.format(sender_email)
},
'attachments' : {
'content' : pdf,
'filename' : data['filename'],
'type' : 'application/pdf'
}
}
sg = sendgrid.SendGridAPIClient(apikey = SENDGRID_API_SECRET)
rq = sg.client.mail.send.post(request_body = data)
我在这里发现了类似的问题,但发布的解决方案并没有解决我的问题。谢谢。