B2B Contact | Copy-paste forms | MyFormConnect
← All forms

B2B Contact

B2B contact with company, role, and inquiry type.

Endpoint

POST https://myformconnect.io/f/YOUR_FORM_ID

Replace YOUR_FORM_ID with your form ID from MyFormConnect.

Copy-paste HTML
<form action="https://myformconnect.io/f/YOUR_FORM_ID" method="POST">
  <input type="text" name="name" placeholder="Name" required>
  <input type="email" name="email" placeholder="Email" required>
  <input type="text" name="company" placeholder="Company" required>
  <input type="text" name="job_title" placeholder="Job title">
  <select name="inquiry_type">
    <option value="">Inquiry type</option>
    <option value="sales">Sales</option>
    <option value="support">Support</option>
    <option value="partnership">Partnership</option>
    <option value="other">Other</option>
  </select>
  <textarea name="message" placeholder="Message" required></textarea>
  <button type="submit">Send</button>
</form>