Implementing Email Confirmation protection with Comfyform empowers you to validate the authenticity of each form submission. By requiring confirmation from the user through their email, you can deter fraudulent submissions and maintain a high-quality contact list. This guide walks you through enabling Email Confirmation for your forms, allowing for an additional layer of verification.Documentation Index
Fetch the complete documentation index at: https://docs.comfyform.com/llms.txt
Use this file to discover all available pages before exploring further.
Activating Email Confirmation
- Log into your Comfyform dashboard.
- Proceed to the Forms section and select the form you want to secure with Email Confirmation.
- Click on the Security tab.
- Find the Email Confirmation section.
- If not previously activated, click “Activate.” To modify existing settings, click “Modify.”
- Check the box to enable Email Confirmation protection.
- Configure the necessary settings:
- Email Field Name: Specify the
nameof the input field in the form where users enter their email address. We’ll use the email value to send the confirmation email to. - Success URL: Provide the URL where users will be redirected after clicking the confirmation link in their email. This can be a URL to a thank you page or another relevant page on your site. If not specified, we’ll take the user to our default thank you page.
- Email Field Name: Specify the
- Click the Save changes button to implement these configurations.
Email Confirmation Workflow
The process of Email Confirmation involves several steps to certify entry legitimacy:- Once the form is submitted, Comfyform sends a confirmation email to the email address provided in the form’s designated email field.
- The user must click on the confirmation link contained within this email to validate their submission.
- Upon clicking the confirmation link, the user is redirected to the Success URL specified during setup or to the URL included in the
_cf_sp_emailconfirmation_url_okhidden input field in the form HTML, if present.
Overriding the Success URL Programmatically
Comfyform prioritizes the URL specified in the hidden input field for the Success URL over the one configured in the dashboard. Here’s how you can add that field to your form:YOUR_SUCCESS_URL with the URL where you want users to be redirected after confirming their email. Note that this URL will be publicly visible to anyone who checks your site’s source code, if used on a public website.
Testing Email Confirmation
Always test your configuration to ensure the Email Confirmation workflow functions smoothly:- Fill out the form using a valid email address and submit.
- Check your inbox for the confirmation email and check its content for accuracy.
- Click the confirmation link to verify redirection to the appropriate Success URL.

