Submission Notifications

Configure how you get notified when someone submits your form. Choose from email alerts, Slack messages, webhooks, or in-app notifications.

Setting up notifications

  1. Open your form
  2. Go to SettingsNotifications
  3. Click + Add notification

Notification types

Email notification

Send an email to yourself or your team when a submission comes in:

FieldDescription
ToRecipient email(s), comma-separated for multiple
SubjectEmail subject; supports variables: New submission from {{name}}
Include fieldsAll fields, or select specific fields to include
Reply-toSet to {{email}} so you can reply directly to the submitter

Confirmation email to submitter

Send an automatic response to the person who submitted:

FieldDescription
To{{email}}, the submitter's email field
SubjectConfirmation subject (e.g., "We received your message!")
BodyThank you message with their submitted data
DelaySend immediately or after a delay

Slack notification

Post to a Slack channel on submission:

FieldDescription
WorkspaceSelect your connected Slack workspace
ChannelWhich channel to post in
Message formatSimple (text only) or Rich (formatted with field values)

Webhook

Send the submission data to a custom URL:

FieldDescription
URLYour webhook endpoint
MethodPOST (default) or GET
HeadersCustom headers for authentication
PayloadFull submission data or selected fields

Conditional notifications

Send different notifications based on submission data:

  1. Click + Add condition on any notification
  2. Set the condition: If {{field}} equals/contains/greater than {{value}}
  3. The notification only sends when the condition is met

Examples

ConditionNotification
budget > 50000Email to sales-enterprise@team.com
department == "Engineering"Slack to #eng-requests
urgency == "Critical"Email with HIGH priority to on-call
country == "US"Email to us-team@company.com

Notification variables

Reference any form field in notification templates:

New contact form submission:

Name: {{name}}
Email: {{email}}  
Company: {{company}}
Message: {{message}}

Submitted at: {{submission_date}}
Form: {{form_name}}

System variables

VariableValue
{{submission_date}}Date and time of submission
{{submission_id}}Unique submission ID
{{form_name}}The form's title
{{form_url}}The form's public URL
{{submission_count}}Total submissions for this form

Managing notifications

Each notification shows:

ColumnDescription
TypeEmail, Slack, or Webhook
Recipient/ChannelWho receives it
ConditionWhen it fires (always or conditional)
StatusActive or Paused
Last sentWhen the notification last fired

Toggle notifications on/off without deleting them. Paused notifications retain their configuration.

Tip

Set up two notifications for contact forms: one to your team (so you respond quickly) and one confirmation to the submitter (so they know their message was received). The confirmation email dramatically reduces "did my form submit?" anxiety.

Warning

Test notifications by submitting the form yourself before going live. Verify that email notifications arrive, Slack messages post to the right channel, and webhook endpoints respond correctly.