Formwire

Form submissions, delivered to chat.

Paste one snippet into your site. Every submission arrives in your Discord, Slack, or Telegram, and in a dashboard you can search. No email in v1, and no backend to write.

01JZ8QK4F2
Contact formPL · just now
name
Ada L.
email
ada@example.com
message
Hello, I would like to talk about the…
#leads (slack) (delivered)general (discord) (delivered)
How it works
  1. 01

    Paste the snippet

    One form element with your key in its action. No package to install, no server to write, and it works with JavaScript disabled.

  2. 02

    Connect a channel

    Point the form at Discord, Slack, Telegram, or your own webhook. Add more than one; each delivers independently.

  3. 03

    Read your submissions

    They arrive in chat within seconds and stay in a dashboard you can search, filter, and export. Spam is quarantined, never dropped.

The snippet

This is the whole integration. Replace the placeholder key with your form's own and the form is live.

<form action="https://api.formwire.dev/s/fw_pub_XXXXXXXX" method="POST">
  <div>
    <label for="name">Name</label>
    <input type="text" name="name" id="name" required />
  </div>
  <div>
    <label for="email">Email</label>
    <input type="email" name="email" id="email" required />
  </div>
  <div>
    <label for="message">Message</label>
    <textarea name="message" id="message" required></textarea>
  </div>
  <input type="text" name="company_website" id="company_website" tabindex="-1" autocomplete="off" style="position:absolute;left:-9999px" aria-hidden="true" />
  <button type="submit">Send</button>
</form>
Where submissions go

Connect as many as you like to one form. Delivery is retried per channel, so a broken webhook never blocks a working Discord integration.