How can I add multiple email IDs to a landing page form?

How can I add multiple email IDs to a landing page form? At present, when I add two or more email addresses, the form submission data is not delivered to any mailbox. However, when only one email ID is added, the form data is received successfully.

Trying to achieve this on https://master.web.devccrncloud.com/test-jj-form

Hello @Asmitap,

Based on Builder.io’s current functionality, the “Send to email” option in the Form block supports only a single email address. It isn’t designed to handle multiple recipients, so using comma-separated emails in that field will not work as expected.

If you need to send form submissions to multiple recipients, here are a few recommended approaches:

Use Zapier (recommended)
Builder has a native Zapier integration for form submissions. You can configure the form to send data to a Zapier webhook, and then set up one or more email actions in Zapier to notify multiple recipients. This is the easiest no-code option.

Builder is an AI-Powered Visual Development Platform that helps teams generate, iterate, and optimize web and mobile experiences in seconds instead of sprints.

Use a custom submit action
If you have developer support, you can handle the form submission using custom code. In the form’s Data tab, add a submit event and send the data to your own backend or serverless function. From there, you can send emails to multiple recipients using your preferred email service.

When adding more inputs, make sure you name them according to the data they are associated with. For example, if you add a field to gather a user’s address, you could name the input address. This is important for handling the data when users submit…

Send to a custom endpoint
You can also configure the form to post to a backend URL you control. That endpoint can then process the submission and forward it to multiple email addresses.

At the moment, the built-in email field does not support multiple recipients, so using one of the above approaches is the best way to achieve this.