Donation intent with amount and message. Payment can be handled separately or via integration.
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> <input type="number" name="amount" placeholder="Amount (optional)" min="0" step="0.01"> <textarea name="message" placeholder="Message (optional)"></textarea> <button type="submit">Donate</button> </form>