curl --request POST \
--url https://api.morphic.io/api/email-drafts/send \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"bcc_emails": [],
"body_html": "<p>Hi, thanks for your time today.</p>",
"cc_emails": [],
"subject": "Follow-up: Product Demo",
"to_emails": [
"jane@acme.com"
]
}
'