Zeptomail API with invoice attachment
I am unbale to figureout the API request (PHP) with attachment of order invoice pdf file. My code sample below -
$base64_attFile = chunk_split(base64_encode(file_get_contents($attFile)));
"subject":"Order Confirmation",
"attachments": { "content": "'.$base64_attFile.' ", "mime_type": "application/pdf", "name": "myinvoice.pdf"},
"htmlbody":"<div><b> Test email sent successfully. </b></div>",
}'
But getting error as follows -
- {"error":{"code":"TM_3301","details":[{"code":"SM_101","message":"Invalid value format","target":"attachments"}],"message":"Bad Syntax"}}
Kindly help me to fix it.