Starting Cobinar Mail…
Cobinar Mail Developer Console

Welcome, Builder

Integrate transactional email, OTP delivery, and smart inbox routing into your app — in minutes.

By signing in you agree to Cobinar's Terms of Service and Privacy Policy

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
📋

No logs yet

Logs appear here once your apps start sending.

📤 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();
👤 Profile
ℹ️ Custom Cobinar authentication will replace Google login in a future update.
⚠️ Account