To embed a Google Form on a Webflow site and send different submissions to different email addresses, you'll need to embed the form, then use Google tools (like Google Sheets + Apps Script or Add-ons) to handle email routing based on form inputs.
src
URL).iframe
embed (e.g., <iframe src="...">
) into the Embed element. Webflow allows this directly.Google Forms does not natively support conditional email sending, but you can achieve it using Google Apps Script:
Example conditional logic (in Apps Script):
You must use MailApp.sendEmail
inside a function onFormSubmit(e)
trigger and enable permissions when prompted.
Alternatively, install a Form-to-email Add-on (like FormMule or Email Notifications for Forms) which has built-in conditional rules and a GUI.
Embed the Google Form via an iframe in Webflow, then use a Google Apps Script or add-on on the connected Sheet to send different form submissions to different email addresses based on form input. For full design control and conditional logic, consider building the form within Webflow and using external tools for routing.