curl --location --request POST 'https://mail.devtcloud.com/api/v1/v2/mail/send' \
--header 'x-api-key: <api-key>' \
--form 'from="example@example.com"' \
--form 'to="example@example.com"' \
--form 'subject="Assunto"' \
--form 'text="Sua Mensagem"' \
--form 'fromName="Seu Nome"' \
--form 'html="<html></html>"' \
--form 'attachments=@""'{
"message": "E-mail enviado"
}