Request Forms

Shipping request form template.

Use this form when a customer, employee, or partner needs a shipment sent. It captures destination, priority, item details, and handling notes in a backend-ready format.

Fields

What this form captures

  • Requester and recipient contact details
  • Shipping address and requested date
  • Item description, quantity, and priority
  • Special handling notes

Workflow

How to use it with FormsFort

  1. Send fulfillment teams a clean email with all shipping fields.
  2. Forward high-priority requests to Slack, Discord, or a webhook.
  3. Store requests in Google Sheets for reconciliation.
  4. Add allowed-domain rules for internal-only shipping forms.

Copy-paste HTML

Backend-ready form code.

Replace YOUR_ACCESS_KEY with your FormsFort public access key, then deploy the form on your site.

<form action="https://api.formsfort.com/submit" method="POST">
  <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY" />
  <input type="hidden" name="subject" value="New shipping request" />

  <label for="requester_email">Requester email</label>
  <input type="email" id="requester_email" name="requester_email" required />

  <label for="recipient_name">Recipient name</label>
  <input type="text" id="recipient_name" name="recipient_name" required />

  <label for="shipping_address">Shipping address</label>
  <textarea id="shipping_address" name="shipping_address" rows="4" required></textarea>

  <label for="priority">Priority</label>
  <select id="priority" name="priority" required>
    <option value="">Choose priority</option>
    <option value="standard">Standard</option>
    <option value="expedited">Expedited</option>
    <option value="overnight">Overnight</option>
  </select>

  <label for="items">Items to ship</label>
  <textarea id="items" name="items" rows="5" required></textarea>

  <input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off" />
  <button type="submit">Send shipping request</button>
</form>

Production notes

Make it reliable before launch

  • Submit from the real production domain and confirm delivery logs show the expected origin.
  • Keep hidden fields for routing and context, not secrets. Public access keys are identifiers.
  • Use allowed domains, honeypots, rate limits, and optional CAPTCHA for public forms.
  • Test uploads, webhook payloads, spreadsheet rows, and autoresponder copy before publishing.

FAQ

Common questions

Can this be used for internal requests?

Yes. Restrict submissions to your company domain or authenticated surface, then route the form to fulfillment destinations.