Automate Lead Qualification with Pipedrive, Gmail & OpenAI

Struggling to track replies from cold email campaigns and qualify leads effectively? This workflow automates email monitoring, uses OpenAI to assess interest, and creates deals in Pipedrive, saving hours and improving sales accuracy.
pipedrive
gmailTrigger
openAi
+4
Workflow Identifier: 2263
NODES in Use: pipedrive, if, openAi, set, gmailTrigger, code, stickyNote

Press CTRL+F5 if the workflow didn't load.

Learn how to Build this Workflow with AI:

Visit through Desktop for Best experience

What This Automation Does

This n8n workflow watches several Gmail inboxes for new email replies.

It reads each reply and checks if the sender’s email is in the Pipedrive CRM database.

Then it looks if the contact is marked as part of an active campaign.

If yes, the workflow uses OpenAI GPT-4 to analyze the email reply to decide if the lead is interested.

If the lead is interested, the workflow creates a new deal in Pipedrive for that person.

This reduces manual work in sorting emails and speeds up sales follow-ups.


Tools and Services Used

  • n8n: Runs the workflow automation.
  • Gmail API: Monitors email inboxes for replies.
  • Pipedrive CRM API: Searches contacts and creates deals.
  • OpenAI GPT-4 API: Analyzes the email text to detect leads’ interest.
  • Custom Fields in Pipedrive: The “in_campaign” field to check campaign status.

Inputs, Processing, and Outputs

Inputs

  • Incoming email replies from multiple Gmail inboxes.
  • Contact data stored in Pipedrive CRM.
  • OpenAI GPT-4 API for text analysis.

Processing Steps

  1. Watch Gmail inboxes for new emails every minute.
  2. Extract the full email text from new replies.
  3. Search Pipedrive for a contact matching the sender’s email.
  4. Get full contact details from Pipedrive to confirm active campaign status.
  5. Use an OpenAI node with GPT-4 to classify if the lead is interested based on reply content.
  6. Parse the AI JSON response to get interest and reasoning.
  7. Check interest result: if “yes”, create a new deal in Pipedrive tied to that contact.

Output

  • New deals only created for interested leads to improve sales pipeline accuracy.
  • Manual sorting time for replies significantly reduced.
  • Better follow-up signals by filtering uninterested replies.

Who Should Use This Workflow

Sales reps managing cold email outreach to many companies or leads.

Anyone wanting to save time on manually reading email replies and qualifying leads.

Users with Pipedrive CRM and Gmail accounts looking to automate lead follow-up.


Beginner Step-by-Step: How to Use This Workflow in n8n

Step 1: Import the Workflow

  1. Click the Download button on this page to get the workflow file.
  2. Open n8n editor where the workflow will run.
  3. Use the Import option and select “Import from File” to load the workflow.

Step 2: Configure Credentials

  1. Go to each Gmail Trigger node and connect with your Gmail account.
  2. Set Pipedrive API credential in the Search Person in CRM and Create deal in CRM nodes.
  3. Input your OpenAI API Key in the Is interested? node for GPT-4 access.
  4. Check if the Pipedrive custom “in_campaign” field is matched correctly in the workflow.

Step 3: Update IDs and Fields as Needed

  1. Edit email inbox names or labels in Gmail Trigger nodes if you watch other folders.
  2. Adjust contact field names in In campaign? If node if your custom field differs.
  3. Check expressions in the Create deal in CRM node to format deal titles properly.

Step 4: Test the Workflow

  1. Send a test email reply from a known contact address to your Gmail inbox.
  2. Watch the workflow run and review each node’s output to confirm proper operation.

Step 5: Activate for Production

  1. Turn on the workflow in n8n by toggling the active switch.
  2. Monitor executions regularly to spot and fix issues early.
  3. Add more Gmail trigger nodes if you want to track additional inboxes.
  4. Consider using self-host n8n if hosting on your own server fits your needs better.

Detailed Workflow Steps

Step 1: Monitoring Gmail Inboxes

Each Gmail Trigger node polls inbox labels every minute.

Uncheck “Simplify” to get full email data for processing.

Step 2: Extract Email Text

The Get email Set node pulls the full text from email data using expression {{$json.text}}.

Step 3: Search Contact in Pipedrive

Search Person in CRM uses sender’s email field {{$json.from.value[0].address}}.

Set limit to 1 to avoid multiple contact matches.

Step 4: Get Full Contact Details

Get person from CRM inputs person ID {{$json.id}} from search result.

This fetches full data including custom fields to check campaign membership.

Step 5: Check Campaign Status

In campaign? If node compares {{$json.in_campaign}} to “True” string value.

Only contacts marked “True” continue.

Step 6: Use OpenAI to Evaluate Interest

Is interested? OpenAI node sends email content with a prompt that asks GPT-4 to respond as a sales rep deciding if the lead is interested.

The expected AI response is JSON with fields “interested” (yes or no) and “reason”.

Step 7: Extract AI Response

The Get response Code node parses the JSON string returned from OpenAI to get interest and reason ready for decision.

let interested = JSON.parse($json["message"]["content"]).interested;
let reason = JSON.parse($json["message"]["content"]).reason;

return {json:{
 interested: interested,
 reason: reason
}};

Step 8: Decide to Create Deal or Not

IF interested node checks if {{$json.interested}} equals “yes”.

If yes, proceeds to next step; otherwise, ends without creating deal.

Step 9: Create Deal in Pipedrive

Create deal in CRM node dynamically sets deal title with expression:

{{$('Get person from CRM').item.json.Name}} Deal

Creates a deal linked to the contact to track interested leads easily.


Customization Ideas

  • Duplicate Gmail Trigger nodes to watch more inboxes.
  • Adjust the AI prompt in Is interested? node to suit your style or define “interested” differently.
  • Change “in_campaign” field checked in In campaign? node to any custom field relevant to your CRM setup.
  • Modify deal title format in Create deal in CRM with dates, campaign names, or any other detail using expressions.

Common Issues and Troubleshooting

No Contact Found in Pipedrive

Cause: The sender email is missing or different from your CRM contact emails.

Check Gmail sender email format and confirm Pipedrive contacts include those emails.

OpenAI API Limits Reached

Cause: Too many AI requests, or API plan restricts usage.

Reduce Gmail polling frequency or consider upgrading OpenAI plan.

Incorrect Interest Detection

Cause: AI prompt is too generic or not aligned to emails you receive.

Update the Is interested? node prompt with clearer instructions and examples.


Pre-Production Checklist

  • Test all Gmail credentials have inbox read access.
  • Verify Pipedrive API key and permission to search contacts and create deals.
  • Confirm “in_campaign” custom field exists on contact records.
  • Check OpenAI API keys and usage limits.
  • Send test emails and watch workflow runs in n8n to validate each step.

Deployment Tips

Once tested, activate the workflow and keep an eye on error logs.

Add more Gmail triggers as outreach accounts grow.

Consider hosting your automation workflows on a self-hosted environment for better control and privacy. See self-host n8n for more information.


Summary

✓ Automates sorting of cold email replies to identify interested leads.

✓ Uses AI (OpenAI GPT-4) to analyze email content accurately.

✓ Creates deals in Pipedrive CRM only for leads showing interest.

→ Saves hours of manual work every week for sales teams.

→ Improves sales pipeline by capturing leads faster and more reliably.


Frequently Asked Questions

Yes, if n8n supports triggers for the other email service, those can replace the Gmail nodes. Email extraction must stay compatible with the workflow.
It makes one OpenAI GPT-4 call per email reply analyzed. Usage depends on reply volume.
The workflow skips that reply and no deal is created. Check that Pipedrive contacts include all email addresses targeted.
Data sent to OpenAI and Pipedrive is subject to their privacy policies. API keys should be kept safe and access controlled within n8n.

Promoted by BULDRR AI

Related Workflows

Automate Viral UGC Video Creation Using n8n + Degaus (Beginner-Friendly Guide)

Learn how to automate viral UGC video creation using n8n, AI prompts, and Degaus. This beginner-friendly guide shows how to import, configure, and run the workflow without technical complexity.
Form Trigger
Google Sheets
Gmail
+37
Free

AI SEO Blog Writer Automation Workflows in n8n

A complete beginner guide to building an AI SEO blog writer automation using n8n.
AI Agent
Google Sheets
httpRequest
+5
Free

Automate CrowdStrike Alerts with VirusTotal, Jira & Slack

This workflow automates processing of CrowdStrike detections by enriching threat data via VirusTotal, creating Jira tickets for incident tracking, and notifying teams on Slack for quick response. Save hours daily by transforming complex threat data into actionable alerts effortlessly.
scheduleTrigger
httpRequest
jira
+5
Free

Automate Telegram Invoices to Notion with AI Summaries & Reports

Save hours on financial tracking by automating invoice extraction from Telegram photos to Notion using Google Gemini AI. This workflow extracts data, records transactions, and generates detailed spending reports with charts sent on schedule via Telegram.
lmChatGoogleGemini
telegramTrigger
notion
+9
Free

Automate Email Replies with n8n and AI-Powered Summarization

Save hours managing your inbox with this n8n workflow that uses IMAP email triggers, AI summarization, and vector search to draft concise replies requiring minimal review. Automate business email processing efficiently with AI guidance and Gmail integration.
emailReadImap
vectorStoreQdrant
emailSend
+12
Free

Automate Email Campaigns Using n8n with Gmail & Google Sheets

This n8n workflow automates personalized email outreach campaigns by integrating Gmail and Google Sheets, saving hours of manual follow-up work and reducing errors in email sequences. It ensures timely follow-ups based on previous email interactions, optimizing communication efficiency.
googleSheets
gmail
code
+5
Free