Universal Mail API · Postfix + OpenDKIM

Connect any HTML form to email in minutes

No backend required. Forms post directly to our endpoint. Emails sent from noreply@email.gosecureserver.in with your user's address as Reply-To. DKIM/SPF/DMARC aligned.

Key Features

Simple

Point your form's action to our endpoint. No JavaScript required. Works with plain HTML.

Flexible

Accept any field names. The API builds a clean email listing all submitted fields automatically.

Deliverable

Powered by Postfix + OpenDKIM with proper envelope sender for maximum DMARC alignment.

99.9%
Uptime Guarantee
<2s
Average Response
24/7
API Availability
Form Fields Supported

Connect your form in 3 steps

Set form action

Point your form to our endpoint:

<form method="post" 
  action="https://email.gosecureserver.in/api/send.php" 
  accept-charset="utf-8">
POSTHTMLNo JS

Choose recipient

Set destination with a hidden field:

<input type="hidden" 
  name="to" 
  value="care@yourdomain.com">

If omitted, API uses default recipient.

Send your fields

Use any field names. The API will:

• Detect user email from reply_to, email, or from
• Use your subject or auto-generate one
• Include all fields in readable format

Copy-paste example

<form method="post" action="https://email.gosecureserver.in/api/send.php" accept-charset="utf-8">
  <!-- Optional: lock destination -->
  <input type="hidden" name="to" value="care@yourdomain.com">

  <!-- Your form fields -->
  <input name="name" placeholder="Your name">
  <input name="email" type="email" placeholder="Your email">
  <textarea name="message" required>Hi, I'd like to know more...</textarea>

  <!-- Optional custom subject -->
  <input type="hidden" name="subject" value="New message from Landing Page">

  <!-- Honeypot (keep hidden) -->
  <div style="display:none"><input name="hp_email" type="text" value=""></div>

  <button type="submit">Send</button>
</form>
Paste on any website. No backend required.

Try it live

Live demo form

This posts to the production endpoint. Change the recipient to your email.

We'll email the message to the address you entered above.

Can I route to different departments?

Yes. Use a hidden to field per form (e.g., sales@, support@). Or add server-side mapping from dropdown to recipient.

Do I need JavaScript?

No. Plain HTML forms work perfectly. If you prefer AJAX, post JSON to the same endpoint for JSON responses.

Deliverability tips

Use a real domain for to. Keep messages concise and human. PTR/rDNS set to email.gosecureserver.in boosts trust.