curl --location --request POST 'https://prod.your-api-server.com/utilities/email/conversation/push' \
--header 'Content-Type: application/json' \
--data-raw '{
"recipients": [],
"cc": [],
"bcc": [],
"subject": "",
"message": {
"type": "html",
"content": "<div>Hello, my name is {{name}}</div>",
"metadata": {
"name": "Buildscratch"
}
}
}'{}