POST
/
send
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>"
    }
  ]
}'
{
  "message_id": "<string>",
  "status": "pending"
}

Headers

x-lettermint-token
string

Body

application/json

Response

202
application/json

The response is of type object.