Netlify Integration Guide
Complete guide to integrate MyFormCapture with Netlify
Deploy on Netlify and send form submissions to MyFormCapture instead of Netlify Forms. Replace netlify / data-netlify attributes with a MyFormCapture action URL.
Prerequisites
- A MyFormCapture account - Sign up here
- A form created in your MyFormCapture dashboard with its UUID copied
- A site hosted (or ready to host) on Netlify
Integration Methods
Replace Netlify Forms (Recommended)
Keep your existing markup, remove Netlify Forms attributes, and point the form at MyFormCapture.
Copy your form UUID
- Log in to your MyFormCapture dashboard
- Open the form you want to use
- Copy the form UUID (e.g.
550e8400-e29b-41d4-a716-446655440000)
Update your form markup
- Remove
data-netlify,netlify, andnetlify-honeypotattributes - Set
actiontohttps://myformcapture.com/f/YOUR_FORM_UUID - Add
data-mfc="true" - Replace
YOUR_FORM_UUIDwith your form UUID - Deploy to Netlify (git push or drag-and-drop)
<!-- Before (Netlify Forms) -->
<form name="contact" method="POST" data-netlify="true">
...
</form>
<!-- After (MyFormCapture) -->
<form action="https://myformcapture.com/f/YOUR_FORM_UUID" method="POST" data-mfc="true">
<label for="name">Name *</label>
<input type="text" id="name" name="name" required>
<label for="email">Email *</label>
<input type="email" id="email" name="email" required>
<label for="message">Message</label>
<textarea id="message" name="message" rows="4"></textarea>
<button type="submit">Send Message</button>
</form>
<script src="https://myformcapture.com/loader.js" data-client-id="YOUR_FORM_UUID"></script>
Important Note
Test
- Open your Netlify site URL
- Submit a test entry
- Check MyFormCapture dashboard under Leads
Related Integrations
References & Official Documentation
Next Steps
Configure MyFormCapture
- Set up your timezone
- Configure lead notifications
- Set up advanced spam detection
- Add team members to your account
Advanced Features
- Use our custom form templates
- Try AI Insights for Leads
- Integrate with your CRM
- Set up automated workflows