API Email - Create

Create Emails New/Reply

POST /v2/email/create

Body

Param
Type
Description

api_key

string

required

from_address

string

required

uid

string

Email uid being responded to

subject

string

Subject if no uid is provided [New Email]

body

string

HTML or Plain Text required

to_address

string

To Address if no uid is provided [New Email]

cc

array

Email Addresses

bcc

array

Email Addresses

headers

array

Key must start with sense_

Example Payload

{
  "api_key": "",
  "from_address": "staffmember@email.com",
  "to_address": "client@email.com",
  "cc": [
    "another@email.com"
  ],
  "subject": "Example Subjext",
  "body": "HTML or Plain Text here",
  "headers": [
    "sense_client_id": 123456
  ]
}

Response

{
    "status": "success"
}

Last updated