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~]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.
A plain email address opens the visitor's normal mail application with the Promptinator labels and values already composed.
[E-send-~office@example.com~]An HTTP or HTTPS destination creates a standard POST containing the completed message and every named value.
[E-submit-~https://promptinator.ai/endpoint.php~]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.
Public test only: this receiver displays the current request and does not save it.
The choices immediately change the completed prompt and the outgoing labels and values.
Type a different email or URL above. Promptinator detects the route and changes Send or Submit automatically.
Choose Edit template, select the bracketed E field, and choose Edit field to see the real visual builder.
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 textserviceEach visible field, using its readable label as the keyprice-per-footH values are included too, even though their controls stay hiddenThis 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; ?>
Accept only expected fields, enforce length limits, and never trust browser-supplied prices as authoritative.
Use HTTPS, rate limiting, spam protection, and authentication when the action is private.
Email the business, create a CRM lead, save an estimate, generate a document, or call another API.