Dashboard
Your Cobinar Mail overview at a glance.
—
Applications
—
Emails Sent
—%
Delivery Rate
—
Active Keys
🚀 Quick Start
ℹ️
Register your app below to receive clientId + clientSecret — that's all you need to start sending.
1️⃣
Register App
Name your app, add your domain, get credentials instantly
2️⃣
Use the API
Pass clientId + clientSecret in headers from your server
3️⃣
Deliver
OTPs, transactional mail, and notifications reach users fast
Applications
Each app gets its own isolated credentials and quota.
Email Logs
Live delivery history across all your applications.
No logs yet
Logs appear here once your apps start sending.
API Reference
Base URL: https://api.mail.cobinar.com/v1
📤 Send Transactional Email
POST /v1/send
// Node.js / Fetch API const res = await fetch('https://api.mail.cobinar.com/v1/send', { method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Client-ID': 'cob_your_client_id', 'X-Client-Secret': 'cs_your_client_secret' }, body: JSON.stringify({ to: 'user@example.com', subject: 'Welcome to our platform!', html: '<h1>Hello!</h1><p>You're in.</p>', text: 'Hello! You\'re in.', // plaintext fallback from_name: 'My App' // optional sender name }) }); // Response: { success: true, message_id: "msg_xxx", status: "sent" } const data = await res.json();
Settings
Account preferences and profile.
👤 Profile
ℹ️
Custom Cobinar authentication will replace Google login in a future update.
⚠️ Account