Integration
SDKs & Libraries
Official SDKs for popular programming languages. Get started quickly with type-safe, well-documented libraries that make integrating EKDSend a breeze.
Available SDKs
Quick Examples
JavaScript
const EKDSend = require('@ekdsend/node');
const client = new EKDSend('ek_live_xxxxxxxxxxxxx');
// Send an email
const email = await client.emails.send({
from: 'hello@yourdomain.com',
to: 'user@example.com',
subject: 'Welcome!',
html: '<h1>Hello World</h1>',
});
console.log('Email sent:', email.id);SDK Features
Type Safety
Full TypeScript/type hints support
Auto Retries
Automatic retry with exponential backoff
Error Handling
Detailed error messages and codes
Async Support
Async/await and Promise support