Mail Notice Platform

Receive POST events and turn them into managed email notifications

This system helps teams route webhook-style POST messages into email alerts with per-user API keys, templates, logs, and admin-managed access control.

Per-user Keys Isolated
Mail Modes Official SMTP / Custom SMTP
Audit Trail Message Logs

What It Does

Overview
POST Intake Accepts JSON or form payloads
Notification Sends templated email alerts
Tracing Every request can be reviewed later

Quick Example

Content-Type: application/json
Authorization: Bearer YOUR_API_KEY

{
  "subject": "Server alert",
  "message": "CPU usage is high",
  "server": "web-01"
}

Key Features

Built for operations
Isolated Each user has a different key and template set.
Flexible SMTP Use the official sender or each user's own mailbox.
Message History Review POST payloads with paginated log pages.
Admin Tools Create, delete, inspect, and reset user access.

How It Works

Simple workflow
1. Create a user account and get an API key.
2. Send POST payloads to /send.php with that key.
3. The system sends a templated email notification.
4. Logs remain available for review in the dashboard.
Create Your First Account