curl --request POST \
--url https://api.deliverykey.com/v1/emails/send \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from": "[email protected]",
"to": "[email protected]",
"subject": "Hello, World!",
"html": "<string>",
"text": "<string>"
}
'