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.
Point your form's action to our endpoint. No JavaScript required. Works with plain HTML.
Accept any field names. The API builds a clean email listing all submitted fields automatically.
Powered by Postfix + OpenDKIM with proper envelope sender for maximum DMARC alignment.
Point your form to our endpoint:
<form method="post" action="https://email.gosecureserver.in/api/send.php" accept-charset="utf-8">
Set destination with a hidden field:
<input type="hidden" name="to" value="care@yourdomain.com">
If omitted, API uses default recipient.
Use any field names. The API will:
<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>
This posts to the production endpoint. Change the recipient to your email.
Yes. Use a hidden to field per form (e.g., sales@, support@). Or add server-side mapping from dropdown to recipient.
No. Plain HTML forms work perfectly. If you prefer AJAX, post JSON to the same endpoint for JSON responses.
Use a real domain for to. Keep messages concise and human. PTR/rDNS set to email.gosecureserver.in boosts trust.