Reply to every new lead within a minute

Step 4 of 12

04 / 12Google Sheets

Log the lead to your sheet

Add a Google Sheets node with the Append Row operation, pick your tracking sheet, and map each column. Set Status to new — the follow-up branch reads this later.

The n8n panel for: Log the lead to your sheet6 things to set here
  1. 1Open the Google Sheets nodedouble-click it on the canvas
  2. 2Operationcopy the value below
  3. 3Namepaste as an expression
  4. 4Emailpaste as an expression
  5. 5Messagepaste as an expression
  6. 6Check before moving onA new row appears in the sheet with Status set to new.
Google Sheets panel in n8nTap to enlarge
Operation
Append Row
Nameexpression
{{ $('Edit Fields').item.json.firstName }}
Emailexpression
{{ $('Edit Fields').item.json.email }}
Messageexpression
{{ $('Edit Fields').item.json.message }}
Status
new
Dateexpression
{{ $now.toISO() }}
Tip
The $('Edit Fields') syntax reaches back to an earlier node — needed because Gmail's output replaces your fields.
Checkpoint
A new row appears in the sheet with Status set to new.