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.
5 things to set here- 1Open the Edit Fields (Set) node — double-click it on the canvas
- 2firstName — paste as an expression
- 3email — paste as an expression
- 4message — paste as an expression
- 5Check before moving on — Three clean fields preview with real values from your dummy lead.
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.