Email Templates

Customize the appearance of submission notification emails with brand colors, subject prefixes, and footer text.

Template options

PropertyTypeDescription
brandColorstringHex color for the email header (max 7 chars, e.g. "#e11d48")
subjectPrefixstringPrefix added to all notification email subjects (max 50 chars)
footerTextstringCustom footer text at the bottom of emails (max 500 chars)

Example configuration

JSON
{
  "emailTemplate": {
    "brandColor": "#e11d48",
    "subjectPrefix": "[Website]",
    "footerText": "This notification was sent by FormFast on behalf of Acme Inc."
  }
}

Default values

If no template is configured, notifications use these defaults:

JSON
{
  "brandColor": "#111111",
  "subjectPrefix": "",
  "footerText": ""
}

Subject line behavior

The notification email subject is determined in this order:

  1. The _subject special field in the submission (if provided)
  2. The default: "New submission on {form name}"

If a subjectPrefix is configured, it's prepended to the subject line.