Simple API · Dynamic HTML · Reliable SMTP

Send Beautiful Emails Dynamically

A lightweight PHP email API for client websites. Your website controls the complete email design, while SEND EMAIL DYNAMIC handles SMTP delivery, reply routing, security and reporting.

2
Emails / request
5
API fields
0
Database
1
Fixed SMTP
Send Email Dynamic

Smart Email Solutions

One controlled delivery layer between your website and your inboxes.

Client Enquiry

Custom enquiry_ui goes to the client.

Thank You

Custom thankyou_ui goes to the user.

Server-controlled SMTP
Credentials never travel in the API request.
What is this project?

One API for your website's email workflow

Your client website builds the actual HTML/CSS email UI and sends five fields to the API. The server delivers two emails and records the request for admin reporting.

Your Email Design

The complete email HTML/CSS comes from the client website on each request.

Two Emails

Enquiry to the client and thank-you to the user from one API call.

No Database

Daily JSONL files provide readable audit logs without a DB dependency.

Secure SMTP

SMTP credentials stay server-side and are configured outside client requests.

How it works

From website form to inbox

A simple four-step delivery flow.

1
Website Builds UI

The client website creates both complete email HTML/CSS bodies.

2
POST to send.php

Send subject, two addresses and the two UI bodies.

3
SMTP Delivery

The fixed server SMTP account sends both emails with Reply-To routing.

4
Track & Test

Admin tools provide dashboard metrics, logs, CSV export and testing.

Why use it?

Built for developers and client websites

Keep branding and email UI inside each website while centralizing the delivery infrastructure in one secure PHP service.

Read API Contract
Fast & Simple

One POST request triggers the complete two-email workflow.

Smart Reply Routing

Client replies go to the user; user replies go to the client.

File-Based Reports

Daily JSONL logs power the dashboard without a database.

Responsive Admin

Bootstrap 5.3 and Bootstrap Icons with one light visual system.

API Documentation

Five fields. That's it.

No SMTP credentials, API key, client ID, or separate message field in the request.

POST /send.php
{
  "subject": "New Enquiry",
  "user-email": "rahul@gmail.com",
  "client-email": "client@example.com",
  "enquiry_ui": "<FULL ENQUIRY EMAIL HTML/CSS>",
  "thankyou_ui": "<FULL THANK-YOU EMAIL HTML/CSS>"
}
Email routing

Enquiry: To client · Reply-To user · Body = enquiry_ui

Thank You: To user · Reply-To client · Body = thankyou_ui

Security: dangerous executable tags, inline events and scriptable URLs are removed before delivery.

Logs: request metadata is stored in daily JSONL files; submitted HTML bodies are not duplicated into logs.

Open Full API Documentation