/api/v1/emailer/send

API endpoint documentation

post
Tags:emailer
Operation ID: postApiV1EmailerSend
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

Body
subjectstring
required
fromstring
required
tostring
required
ccstring
optional
bccstring
optional
replyTostring
optional
prioritynumber
optional
notestring
optional
htmlBodystring
optional
tagstring
optional
forceSendNowboolean
optional
Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/emailer/send?apiKey=YOUR_API_KEY', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
        "subject": "example_subject",
        "from": "example_from",
        "to": "example_to",
        "cc": "example_cc",
        "bcc": "example_bcc",
        "replyTo": "example_replyTo",
        "priority": 1,
        "note": "example_note",
        "htmlBody": "example_htmlBody",
        "tag": "example_tag",
        "forceSendNow": false
    })
})

Example Response

HTTP 200Success Response
{
  "success": false
}

🔑 API Key Required

All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.

Back to API Documentation
Last updated: August 6, 2025