When someone requests your lead magnet, this workflow emails them the download link via Gmail and appends them to your subscriber sheet. Reliable, instant delivery that captures the contact.
{
"name": "Lead Magnet Delivery",
"nodes": [
{
"id": "lm01aa",
"name": "Magnet Request",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
220,
300
],
"parameters": {
"httpMethod": "POST",
"path": "lead-magnet",
"responseMode": "onReceived"
}
},
{
"id": "lm02bb",
"name": "Send Download",
"type": "n8n-nodes-base.gmail",
"typeVersion": 2.1,
"position": [
460,
300
],
"parameters": {
"resource": "message",
"operation": "send",
"sendTo": "={{ $json.body.email }}",
"subject": "Your download is here",
"message": "Thanks! Download your guide: https://example.com/download/guide.pdf",
"options": {}
}
},
{
"id": "lm03cc",
"name": "Add to List",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 4.4,
"position": [
700,
300
],
"parameters": {
"operation": "append",
"documentId": "YOUR_SHEET_ID",
"sheetName": "Leads",
"columns": {
"mappingMode": "defineBelow",
"value": {
"email": "={{ $('Magnet Request').item.json.body.email }}",
"source": "lead-magnet"
}
}
}
}
],
"connections": {
"Magnet Request": {
"main": [
[
{
"node": "Send Download",
"type": "main",
"index": 0
}
]
]
},
"Send Download": {
"main": [
[
{
"node": "Add to List",
"type": "main",
"index": 0
}
]
]
}
},
"active": false,
"settings": {},
"meta": {}
}