curl --request POST \
--url https://api.example.com/notifications/emails/send \
--header 'Content-Type: application/json' \
--data '
{
"templateId": "<string>",
"identifier": "<string>",
"receiverEmails": [
"<string>"
],
"attachments": [
{
"name": "<string>",
"data": "<string>"
}
],
"messageData": [
{
"key": "<string>",
"value": "<string>"
}
],
"bccEmail": "<string>"
}
'