submittedForm
The user submitted a form via the application or website.
The user submitted a form via the application or website.
| Field | Type | Required | Description |
|---|---|---|---|
form | form | Yes | The details of the form submitted. |
1/* submittedForm example */23// Create the form object4var form = {5 "fromEmail": "george@bagels1964.com",6 "fromName": "George Hairyson",7 "fromTelephone": {8 "home": "0843 850 2090"9 },10 "message": "Hi my name is George and I'm looking for an agent to help me sell my home in London.",11 "name": "contact-us",12 "subject": "looking for an agent",13 "toEmail": "info@mycompany.com"14}1516// Call the event with the data object containing the form.17brytescore( "submittedForm", { "form": form } );
Updated July 25, 2026