This is email api "Authorization: Bearer <>" in header required. Accepts GET, POST or JSON inputs. Inputs: to : Array of emails like "Name " from : "Name " subject : Email subject body : Email content type : (optional) Deafult is text/plain. Can be text/html. cc : (optional) array of emails bcc : (optional) array of emails reply-to : (optional) Reply-to email address JSON format example: curl -X POST -d '{ "to": ["Test Recipient ", "Second Receipent "], "cc": ["CC Test Recipient "], "bcc": ["bCC Test Recipient "], "from": "Test Sender ", "reply-to": "Test reply-to ", "subject": "Test Subject", "body": "Test Message Body
New line", "type": "text/html" }' -H 'Content-Type: application/json' -H "Authorization: Bearer <>" "https://mailer.bose.dev/"