Reply to every new lead within a minute

Step 2 of 12

02 / 12Edit Fields (Set)

Tidy the fields

Add an Edit Fields (Set) node and map the raw form fields to clean names. Splitting out a first name makes the reply feel written rather than generated.

The n8n panel for: Tidy the fields5 things to set here
  1. 1Open the Edit Fields (Set) nodedouble-click it on the canvas
  2. 2firstNamepaste as an expression
  3. 3emailpaste as an expression
  4. 4messagepaste as an expression
  5. 5Check before moving onThree clean fields preview with real values from your dummy lead.
Edit Fields (Set) panel in n8nTap to enlarge
firstNameexpression
{{ $json.body.name.trim().split(' ')[0] }}
emailexpression
{{ $json.body.email.trim().toLowerCase() }}
messageexpression
{{ $json.body.message || '(no message)' }}
Checkpoint
Three clean fields preview with real values from your dummy lead.