New Customer CRM + Email

    Shared 4/29/2026

    0 views

    Visual Workflow

    JSON Code

    {
      "name": "New Customer CRM + Email",
      "nodes": [
        {
          "id": "1",
          "name": "Webhook",
          "type": "n8n-nodes-base.webhook",
          "position": [
            250,
            300
          ],
          "parameters": {
            "path": "yeni-musteri",
            "httpMethod": "POST"
          }
        },
        {
          "id": "2",
          "name": "HubSpot",
          "type": "n8n-nodes-base.hubspot",
          "position": [
            500,
            300
          ],
          "parameters": {
            "resource": "contact",
            "operation": "create"
          }
        },
        {
          "id": "3",
          "name": "Gmail",
          "type": "n8n-nodes-base.gmail",
          "position": [
            750,
            300
          ],
          "parameters": {
            "to": "={{$node.Webhook.json.email}}",
            "message": "=Merhaba {{$node.Webhook.json.name}}, kaydınız tamamlandı.",
            "subject": "Hoş Geldiniz!",
            "operation": "send"
          }
        }
      ],
      "connections": {
        "HubSpot": {
          "main": [
            [
              {
                "node": "Gmail",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Webhook": {
          "main": [
            [
              {
                "node": "HubSpot",
                "type": "main",
                "index": 0
              }
            ]
          ]
        }
      }
    }