Products

Email API

Send transactional and marketing emails with industry-leading deliverability. Our Email API handles everything from simple notifications to complex template-based campaigns.

99.9%
Deliverability
<2s
Avg Delivery Time
100M+
Emails/Month

Features

Transactional Emails

Send order confirmations, password resets, and notifications

Template Engine

Create reusable templates with dynamic content

Bulk Sending

Send to thousands of recipients efficiently

Analytics & Tracking

Track opens, clicks, and delivery rates

Quick Example

// Send an email using the EKDSend API
const response = await fetch('https://es.ekddigital.com/v1/send', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer ek_live_xxxxxxxxxxxxx',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    type: 'email',
    from: 'hello@yourdomain.com',
    to: 'user@example.com',
    subject: 'Welcome to Our Platform!',
    html: '<h1>Welcome!</h1><p>Thanks for signing up.</p>',
    template_id: 'welcome_template',
    template_data: {
      name: 'John',
      company: 'Acme Inc',
    },
  }),
});

const data = await response.json();
console.log('Email sent:', data.id);

API Endpoints

POST/v1/sendSend an email (type=email)
GET/v1/send/{id}Get email status
GET/v1/sendList sent emails
POST/v1/templatesCreate a template
GET/v1/domainsList verified domains