curl --request POST \
--url https://api.thepurplebox.io/v1/send \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from": "<string>",
"to": [
"<string>"
],
"subject": "<string>",
"body": "<string>",
"cc": [
"<string>"
],
"bcc": [
"<string>"
],
"username": "<string>",
"reply_to": "<string>",
"headers": {},
"attachments": [
{}
]
}
'