Block 1 - Sticky Note
- Type / Role
- n8n-nodes-base.stickyNote - stickyNote
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
This n8n workflow reads emails from your Outlook inbox, drafts AI powered replies using OpenAI, and routes them through the gotoHuman node for human approval before replying automatically. Key Fe...
n8n-nodes-base.stickynote, @n8n/n8n-nodes-langchain.toolthink, @n8n/n8n-nodes-langchain.outputparserstructured, @n8n/n8n-nodes-langchain.lmchatopenai, n8n-nodes-base.manualtrigger, n8n-nodes-base.code, @n8n/n8n-nodes-langchain.agent, n8n-nodes-base.microsoftoutlook
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Robert Breen.
Original n8n.io sourceThis n8n workflow reads emails from your Outlook inbox, drafts AI-powered replies using OpenAI, and routes them through the gotoHuman node for human approval before replying automatically.
gotoHuman node for human review and approval of replies before sending.Microsoft Outlook – Fetch and reply to emailsOpenAI – Generates smart reply textgotoHuman – Human-in-the-loop approval systemLoop Over Items, IF, Code, and Set nodes for processing logicManual Trigger – For testingOutlook OAuth2:
https://api.n8n.cloud/oauth2-credential/callbackOpenAI API:
gotoHuman API:
Use the Manual Trigger to test or schedule execution with a cron node.
A Code node outputs today's date in the proper yyyy-mm-dd format.
const today = new Date();
today.setHours(0, 0, 0, 0);
return [{ json: { searchQuery: `received:${today.toISOString().split('T')[0]}` } }];
received:2025-08-06 -from:[email protected] (Update to your email)Text prompt to OpenAI:
subject: {{ $json.subject }}
body: {{ $json.body.content }}
System prompt:
> You are a personal assistant helping respond to emails. I am an AI automation expert specializing in helping small and medium-size businesses automate processes. Create a short response to the email. Sign the email as Robert Breen.
gotoHuman node.approved, send replyIf you'd like help customizing this or building similar automations, reach out:
Robert Breen
AI & Automation Consultant
🌐 https://ynteractive.com
📧 [email protected]
🔗 LinkedIn
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Automated email replies with GPT-4o, Outlook, and GoToHuman approval |
|---|---|
| Complexity | advanced |
| Nodes | 15 |
| Categories | Ticket Management, AI Chatbot |
| Author | Robert Breen |
| Published | 06 Aug 2025 |
Use the JSON export at /data/workflows/7049/7049.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
This n8n workflow reads emails from your Outlook inbox, drafts AI powered replies using OpenAI, and routes them through the gotoHuman node for human approval before replying automatically. Key Fe...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Ticket Management, AI Chatbot use case.