Hey, is there a way to limit the number of form subscription based on the email address ?
I need to block the form after one submission for each email address and potentially add a condition on whether it’s recent or not (maybe 48h).
Hey, is there a way to limit the number of form subscription based on the email address ?
I need to block the form after one submission for each email address and potentially add a condition on whether it’s recent or not (maybe 48h).
There’s no effective means to do this client-side, due to the fact that they could use multiple browsers, etc.
Assuming you want to display an error, you’d need to build a circuit from the form, to e.g. Make.com or some other middle tier, and then track the submissions somewhere like Airtable.
The setup would look something like this…
A bit easier if you don’t care about the error message, because it can just silently fail the additional submissions without informing the user. In that case you can use Webflow’s native form handler, with a webhook from the form submission received event and just process at that level.
OK that’s what i was afraid of ![]()
Thanks Michael, latter solution will be fine ![]()