Sending
Send Email
POST
/
send
Copy
curl --request POST \
--url https://api.lettermint.co/v1/send \
--header 'Content-Type: application/json' \
--data '{
"route": "<string>",
"from": "<string>",
"subject": "<string>",
"html": "<string>",
"text": "<string>",
"to": [
"<string>"
],
"cc": [
"<string>"
],
"bcc": [
"<string>"
],
"reply_to": [
"<string>"
],
"attachments": [
{
"filename": "<string>",
"content": "<string>"
}
]
}'
Copy
{
"message_id": "<string>",
"status": "pending"
}
Headers
Body
application/json
Response
202
application/json
The response is of type object
.
Copy
curl --request POST \
--url https://api.lettermint.co/v1/send \
--header 'Content-Type: application/json' \
--data '{
"route": "<string>",
"from": "<string>",
"subject": "<string>",
"html": "<string>",
"text": "<string>",
"to": [
"<string>"
],
"cc": [
"<string>"
],
"bcc": [
"<string>"
],
"reply_to": [
"<string>"
],
"attachments": [
{
"filename": "<string>",
"content": "<string>"
}
]
}'
Copy
{
"message_id": "<string>",
"status": "pending"
}
Assistant
Responses are generated using AI and may contain mistakes.