Technical support or help request with issue category and description.
Endpoint
POST https://myformconnect.io/f/YOUR_FORM_ID
Replace YOUR_FORM_ID with your form ID from MyFormConnect.
<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>
<select name="issue_category">
<option value="">Issue type</option>
<option value="technical">Technical</option>
<option value="billing">Billing</option>
<option value="feature">Feature request</option>
<option value="other">Other</option>
</select>
<input type="text" name="subject" placeholder="Subject">
<textarea name="message" placeholder="Describe your issue" required></textarea>
<button type="submit">Submit</button>
</form>