Error message:
"errorMessage": "Object of type bytes is not JSON serializable"
def _get_file():
s3 = boto3.resource('s3')
obj = s3.Object(S3_BUCKET_NAME, S3_ITEM_NAME)
return obj.get()['Body'].read()
def _send_email_with_ebook(email):
data = {
...
"attachments": [
{
"content": _get_ebook_file(),
"type": "application/pdf",
"filename": "my_file.pdf"
}
]
}
headers = {'Authorization': 'Bearer {}'.format(SENDGRID_API_KEY), 'Content-Type': 'application/json'}
r = requests.post(SENDGRID_API_URL, json=data, headers=headers)