For the first thing you ship.
- 5,000 emails a month, 200 a day
- 1 sending domain, 1 contact book, 1 team member, 1 webhook
- Full API, SMTP relay, webhooks, suppression
- One-time codes; SMS prepaid from the wallet
Notix is a transactional and marketing email platform with a JSON API, an SMTP relay, OTP codes by email and SMS, and one suppression list. In Nigeria and Kenya it is billed in naira or shillings from a prepaid wallet you top up by card, bank transfer or mobile money, so no dollar card is needed. The free plan covers 5,000 emails a month everywhere, with no card and no end date.
Supported today: NGN for Nigeria and KES for Kenya. Everywhere else, prices are in USD and paid by card. Each country page has the local price, the top-up methods and the SMS sender ID rules.
A wallet in NGN, topped up by card, bank transfer or mobile money. SMS codes under a sender ID registered with the Nigerian networks; Notix files the paperwork for your own corporate sender ID.
A wallet in KES, the same top-up methods, and SMS codes under an alphanumeric sender ID that Notix submits to the network for you.
Your team holds a wallet in its own currency. Top it up through HitchPay by card, bank transfer or mobile money; Pro months and usage past the free allowance are deducted from it, and every movement has a receipt. The prices below are read live from the same price list the app bills with, for your location.
For the first thing you ship.
Prices shown in USD. Pay by card.
For committed volume and procurement.
A JSON endpoint with typed SDKs for TypeScript, Python, Go and PHP, and an SMTP relay for anything that already speaks SMTP, sharing one pipeline.
One verification API sends a code by email or SMS. SMS is prepaid from the same wallet and can carry your own sender ID.
Bounces, complaints and unsubscribes on a single list that transactional and marketing mail both honour.
Delivery, bounce, complaint, open and click events as signed HTTP POSTs to your server.
5,000 emails a month, 200 a day, no card and no end date. Pro is $15 a month for 50,000 emails, billed in your currency where the wallet is offered.
A JSON body, a Bearer key and an idempotency key. Full reference on the email API page, the SMTP relay page and in the docs.
curl -X POST https://app.usenotix.dev/api/v1/emails \
-H "Authorization: Bearer $NOTIX_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: order-4471-receipt" \
-d '{
"from": "receipts@acme.com",
"to": "customer@example.com",
"subject": "Your receipt for order 4471",
"html": "<p>Thanks for your order.</p>"
}'
import { Notix } from "notix-js";
const notix = new Notix(process.env.NOTIX_API_KEY);
const { data, error } = await notix.emails.send(
{
from: "receipts@acme.com",
to: "customer@example.com",
subject: "Your receipt for order 4471",
html: "<p>Thanks for your order.</p>",
},
{ idempotencyKey: "order-4471-receipt" },
);
from notix import Notix
client = Notix(os.environ["NOTIX_API_KEY"])
data, err = client.emails.send({
"from": "receipts@acme.com",
"to": "customer@example.com",
"subject": "Your receipt for order 4471",
"html": "<p>Thanks for your order.</p>",
})
| Item | Limit | Where it is set |
|---|---|---|
| Recipients | 50 per message across to, cc and bcc; each one counts as an email | POST /v1/emails, and RCPT TO on the SMTP relay |
| Attachments | 10 files, 7 MB each, 10 MB per email | Request body, measured after base64 decoding |
| Batch | 100 messages per call, 40 MB of attachments across the batch | POST /v1/emails/batch |
| Idempotency key | 256 characters, kept 24 hours | Idempotency-Key header |
Pay in naira through HitchPay into a prepaid wallet; the price per email is the one the app bills with.
ProductPay in shillings into a prepaid wallet; the same send API, SMTP relay and OTP codes, priced in KES.
NotixA free plan with no card, and Pro at $15 a month for 50,000 emails. Only sent volume is metered.
ProductOne JSON API for transactional and marketing email: send, batch, schedule, webhooks, typed SDKs.
ProductPoint any framework's mailer at one host and port; the relay turns SMTP into the same tracked, suppressed send.
Use casesSend one-time codes by email or SMS with two API calls, with expiry, length and risk scoring handled for you.
Verify a domain, copy an API key, make one call. The free plan does not ask for a card.