Promptinator2.4.6 Open studio
EMAIL + FORM POST

One E field.
Two useful routes.

Enter an email address and Promptinator prepares a message. Enter an HTTP or HTTPS URL and it submits every completed field to that endpoint. Both live examples below are fully editable.

EMAIL DETECTED

Send

A plain email address opens the visitor's normal mail application with the Promptinator labels and values already composed.

[E-send-~office@example.com~]
URL DETECTED

Submit

An HTTP or HTTPS destination creates a standard POST containing the completed message and every named value.

[E-submit-~https://promptinator.ai/endpoint.php~]
INTERACTIVE ROUTE LAB

Edit it. Watch it change. Then run it.

These are real Promptinators—not mock controls. Change the form name or destination directly, click any blue field to change its value, or choose Edit template to open the complete Insert/Edit Field workflow. The embed code stays synchronized underneath.

01
EMAIL ROUTE

Submit to email

Email detected · Send
LIVE PROMPTINATOR
Prepare a [D-service-|roof cleaning|house wash|driveway cleaning|~roof cleaning~] estimate for [A-customer_name-~Jordan~] at a [D-square_feet-1000..3000:100~1800~] square-foot property. [E-send-~office@example.com~]
What happens: Send opens the visitor's normal mail application. The form name becomes the subject; the labeled Promptinator values become the body.
LIVE EMBED CODE
02
HTTP/HTTPS ROUTE

Submit to an endpoint

URL detected · POST
LIVE PROMPTINATOR
Create a [D-document-|project brief|sales proposal|training outline|~project brief~] for [A-client_name-~Acme Company~] with [C-priorities-|speed|clarity|cost control|~clarity~]. [H-account_tier-~Business~] [E-submit-~https://promptinator.ai/endpoint.php~]
What happens: Submit sends the form name, completed message, visible selections, and hidden values to the endpoint using a standard HTML POST.
LIVE EMBED CODE

Public test only: this receiver displays the current request and does not save it.

1

Change the blue fields

The choices immediately change the completed prompt and the outgoing labels and values.

2

Edit the route

Type a different email or URL above. Promptinator detects the route and changes Send or Submit automatically.

3

Edit the shortcode

Choose Edit template, select the bracketed E field, and choose Edit field to see the real visual builder.

STANDARD PAYLOAD

Nothing mysterious is sent.

The endpoint receives ordinary form fields. A separate form name identifies which Promptinator was submitted, while the E label remains the short button action.

_formTitleThe separate form name, such as “Melanie's bedtime story”
messageThe complete resolved Promptinator text
serviceEach visible field, using its readable label as the key
price-per-footH values are included too, even though their controls stay hidden
BARE-BONES PHP

Make your own endpoint.

This deliberately small receiver shows developers exactly where the title, completed message, and dynamic fields arrive. It escapes all displayed output and stores nothing.

<?php
header('Content-Type: text/html; charset=UTF-8');

function clean($value) {
    return htmlspecialchars((string) $value, ENT_QUOTES, 'UTF-8');
}

$title   = $_POST['_formTitle'] ?? 'Promptinator submission';
$message = $_POST['message'] ?? '';
$fields  = $_POST;
unset($fields['_formTitle'], $fields['message']);
?>

<h1><?= clean($title) ?></h1>
<h2>Completed message</h2>
<pre><?= clean($message) ?></pre>

<h2>Labels and values</h2>
<?php foreach ($fields as $label => $value): ?>
  <p>
    <strong><?= clean(ucwords(str_replace('-', ' ', $label))) ?>:</strong>
    <?= clean(is_array($value) ? implode(', ', $value) : $value) ?>
  </p>
<?php endforeach; ?>
WHEN YOU GO LIVE

Turn the receiver into a workflow.

01

Validate

Accept only expected fields, enforce length limits, and never trust browser-supplied prices as authoritative.

02

Protect

Use HTTPS, rate limiting, spam protection, and authentication when the action is private.

03

Act

Email the business, create a CRM lead, save an estimate, generate a document, or call another API.