curl --request POST \
--url https://api.example.com/v1/emails \
--header 'Content-Type: application/json' \
--data '
{
"from": "<string>",
"to": [
"<string>"
],
"subject": "<string>",
"html": "<string>",
"text": "<string>",
"cc": [
"<string>"
],
"bcc": [
"<string>"
],
"reply_to": "<string>",
"attachments": [
{}
],
"headers": {},
"tags": {},
"scheduled_for": "<string>"
}
'