Connect with customers anywhere in the world through reliable and scalable email delivery. Our system guarantees top deliverability and rapid message transmission.
Get Started View DocumentationBuild lasting connections with customers across the globe through powerful, scalable email campaigns designed for engagement and growth.
We believe your emails deserve more than just being “sent.” That’s why our advanced platform works tirelessly to ensure they’re delivered straight to the right inboxes — quickly, securely, and with exceptional consistency. Because your message matters, and it should always arrive where it counts.
Reach customers in 200+ countries with local numbers for better engagement.
99.95% uptime SLA with message delivery in under 3 seconds globally.
End-to-end encryption and compliance with global privacy regulations.
Track delivery rates, engagement, and performance with detailed reports.
Discover how businesses use our service.
Send order confirmations, shipping updates, appointment reminders, and security alerts.
Deliver one-time passwords, verification codes, and two-factor authentication messages.
Engage customers with promotional offers, product announcements, and personalized campaigns.
Get started in minutes with our developer-friendly API
Create your account and get your API credentials
Use our SDKs or make direct API calls
Send test messages with free credits
Deploy to production and start messaging
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': 'api.ozibus.com.au',
'path': '/v1/mail',
'headers': {
'Merchant-Id': '<YOUR_MERCHANT_ID>',
'API-Key': '<YOUR_API_KEY>',
'Content-Type': 'application/json',
'Authorization': 'Bearer <YOUR_JWT_TOKEN>',
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"personalizations": [
{
"to": [
{
"email": "name@mail.com",
"name": "Name"
}
],
"cc": [
],
"bcc": [
]
},
{
"from": {
"email": "",
"name": ""
},
"to": [
{
"email": "",
"name": ""
}
],
"bcc": [
{
"email": "",
"name": ""
}
]
}
],
"from": {
"email": "noreply@ozibus.com.au",
"name": "Company Name"
},
"reply_to": {
"email": "email@company.com",
"name": "Contact Name"
},
"subject": "Welcome",
"content": [
{
"type": "text\\/html",
"value": "<p>Message Body</p>"
}
],
"attachments": [
{
"content": "",
"filename": "",
"type": "",
"disposition": ""
}
],
"settings": {
"test_mode": {
"enable": false
}
}
});
req.write(postData);
req.end();Join thousands of businesses using Ozibus for their Email Delivery System needs.
Get Started for Free