submittedForm

The user submitted a form via the application or website.

The user submitted a form via the application or website.

FieldTypeRequiredDescription
formformYes

The details of the form submitted.

1/* submittedForm example */
2
3// Create the form object
4var 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}
15
16// Call the event with the data object containing the form.
17brytescore( "submittedForm", { "form": form } );

Updated July 25, 2026