POST
/
api
/
v1
/
emails
curl --request POST \
  --url http://ferdinand.email/api/v1/emails \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "from": "jsmith@example.com",
  "to": "jsmith@example.com",
  "subject": "<string>",
  "text": "<string>",
  "html": "<string>"
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Details of the email to send

The body is of type object.

Response

200

Email sent successfully