Zeptomail API (PHP) with invoice pdf attachment

Zeptomail API (PHP) with invoice pdf attachment

I am unable to properly make the syntax of API request via PHP to sent order invoice (PDF) in attachment. 

Below is my sample code API request - 
  1. $file = '169242759486.pdf';
  2. $attFile = 'https://www.example.com/secureInvoice/' . $file;
  3. $base64_attFile = chunk_split(base64_encode(file_get_contents($attFile)));
  4. "from": { "address": "sender@email.com", "name": "Sender Name"},
  5. "to": [{"email_address": {"address": "customer@email.com","name": "Customer Name"}}],
  6. "reply_to": {"address": "user@email.com", "name": "User Name"},
  7. "subject":"Test Email",
  8. "attachments": { "content": "'.$base64_attFile.' ", "mime_type": "application/pdf", "name": "myinvoice.pdf"},
  9. "htmlbody":"<div><b> Test email sent successfully. </b></div>",
  10. }'

I am getting the error response as - 

  1. {"error":{"code":"TM_3301","details":[{"code":"SM_101","message":"Invalid value format","target":"attachments"}],"message":"Bad Syntax"}}

Anybody kindly help me to fix it.