SaaS Developers SMTP Mail Infrastructure 🚀

Send Transactional Emails Safely at Warp Speed with
Dijla Email

Professional multi-tenant REST API & SMTP delivery gateway built with Redis queues and MySQL reliability. Bind separate SMTP configurations per customer key to secure sender reputation.

Why Choose Dijla Tech?

Scalable technology tailored for high-concurrency systems and transactional dispatches

High-Speed Redis Queues

Powered by Redis and BullMQ. Background workers process tasks concurrently to guarantee delivery without bottlenecking your app.

Multi-Tenant SMTP Bindings

Bind unique SMTP host credentials for each API key individually. Keep customer configs separated and isolated.

Real-Time Tracking Logs

Verify dispatch logs, trace failure reasons, and poll worker tasks dynamically inside an interactive SaaS console.

DKIM & SPF Signing

Automatic DKIM signatures applied on outbound templates to optimize inbox delivery rates and pass security filters.

Fair & Flexible Pricing Plans

Choose the pricing tier that matches your system scale. Upgrade or downgrade anytime.

Monthly Annual (Save 15%)

Starter Plan

Best for developers, simple portfolios, and sandbox tests.

$ 5 / month
  • 6,000 Volume
  • Rate Limit: 5 reqs/sec
  • Shared Sending IP
  • Developers & Personal Sites

Business Plan

Built for active SaaS platforms, high-volume e-commerce, and schools.

$ 40 / month
  • 60,000 Volume
  • Rate Limit: 5 reqs/sec
  • Shared Sending IP
  • Startups & Active SaaS Platforms

Enterprise Plan

Custom limits, dedicated sending IPs, and 24/7 technical assistance.

Custom
  • 100,000+ Emails / Month
  • Dedicated sending IP
  • SLA & Custom Contracts
  • Dedicated IP Clients

Setup & Integration Guide

Integrate manually with detailed technical schema or generate implementation codes with AI helpers

Prerequisites for Setup:

1. Get your API Key from the Dashboard
2. Link your SMTP credentials inside portal settings
STEP 1

Custom Authentication Header

All HTTP requests directed to our platform must include your custom x-dijla-key credential token mapped inside headers.

POST /api/v1/dispatch HTTP/1.1 Host: email.alzmar.com x-dijla-key: dijla_sk_your_api_key Content-Type: application/json
STEP 2

Dispatch Endpoints URI

Direct your transactional outgoing request payloads via POST to: https://email.alzmar.com/api/v1/dispatch

curl -X POST https://email.alzmar.com/api/v1/dispatch \ -H "x-dijla-key: dijla_sk_your_api_key" \ -H "Content-Type: application/json" \ -d '{ "message": { "to": "recipient@domain.com", "subject": "Hello from Dijla Tech" }, "template": { "html": "<h3>Welcome to Dijla Tech!</h3>", "variables": {} } }'
STEP 3

REST Payload Document Schema

Compose request bodies in JSON format containing message details (to, subject, from) and template variables tags.

{ "message": { "to": "customer@gmail.com", "subject": "Order Confirmed #{{orderId}}" }, "template": { "html": "<h1>Hello {{customerName}}!</h1><p>Order processed.</p>", "text": "Hello {{customerName}}! Order processed.", "variables": { "orderId": "50439", "customerName": "Mohammed Ali" } } }