감정 선택형 AI 이메일 생성기
중급
이것은Content Creation, Multimodal AI분야의자동화 워크플로우로, 15개의 노드를 포함합니다.주로 Set, Code, Form, FormTrigger, Agent 등의 노드를 사용하며. OpenAI GPT를 사용하여 맞춤형 분위기를 가진 전문 이메일 생성
사전 요구사항
- •OpenAI API Key
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "zQkM15rEmD23HAeW",
"meta": {
"instanceId": "8e5c0196cd9c25c3b614ccc37109266dd4ae7fef2aa858eab9011bdc62218bf1",
"templateCredsSetupCompleted": true
},
"name": "AI Email Generator with Tone Selection",
"tags": [
{
"id": "sBLDO4c3ubWvhiSj",
"name": "n8n creator",
"createdAt": "2025-09-30T20:55:34.201Z",
"updatedAt": "2025-09-30T20:55:34.201Z"
}
],
"nodes": [
{
"id": "a7d25cbb-f1f1-451c-bb89-7dcfaa5f8915",
"name": "이메일 생성기 폼",
"type": "n8n-nodes-base.formTrigger",
"position": [
416,
288
],
"webhookId": "email-gen-form",
"parameters": {
"options": {},
"formTitle": "AI Email Generator",
"formFields": {
"values": [
{
"fieldLabel": "Recipient Name",
"requiredField": true
},
{
"fieldLabel": "Email Subject",
"requiredField": true
},
{
"fieldType": "textarea",
"fieldLabel": "Email Context",
"requiredField": true
},
{
"fieldType": "dropdown",
"fieldLabel": "Tone",
"fieldOptions": {
"values": [
{
"option": "Professional"
},
{
"option": "Friendly"
},
{
"option": "Formal"
},
{
"option": "Casual"
}
]
},
"requiredField": true
}
]
},
"formDescription": "Generate professional emails with your chosen tone"
},
"typeVersion": 2.2
},
{
"id": "336e7273-30ca-4800-a8b2-01eaadaa0e32",
"name": "폼 데이터 추출",
"type": "n8n-nodes-base.set",
"position": [
640,
288
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "recipient-field",
"name": "recipient",
"type": "string",
"value": "={{ $json['Recipient Name'] }}"
},
{
"id": "subject-field",
"name": "subject",
"type": "string",
"value": "={{ $json['Email Subject'] }}"
},
{
"id": "context-field",
"name": "context",
"type": "string",
"value": "={{ $json['Email Context'] }}"
},
{
"id": "tone-field",
"name": "tone",
"type": "string",
"value": "={{ $json['Tone'] }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "fd094524-76b1-45cd-ac72-402aefc39ff9",
"name": "AI 프롬프트 작성",
"type": "n8n-nodes-base.code",
"position": [
864,
288
],
"parameters": {
"jsCode": "const recipient = $input.item.json.recipient;\nconst subject = $input.item.json.subject;\nconst context = $input.item.json.context;\nconst tone = $input.item.json.tone.toLowerCase();\n\nlet toneInstructions = '';\n\nswitch(tone) {\n case 'professional':\n toneInstructions = 'Use a professional, business-appropriate tone. Be clear, concise, and respectful. Maintain a balance between friendliness and formality.';\n break;\n case 'friendly':\n toneInstructions = 'Use a warm, friendly tone while remaining appropriate. Be conversational and approachable, but maintain professionalism.';\n break;\n case 'formal':\n toneInstructions = 'Use a highly formal, diplomatic tone. Use proper salutations and maintain strict formality throughout. Be respectful and courteous.';\n break;\n case 'casual':\n toneInstructions = 'Use a casual, relaxed tone. Be conversational and natural, as if writing to a colleague or friend.';\n break;\n default:\n toneInstructions = `Use a ${tone} tone.`;\n}\n\nconst prompt = `Write a complete email with the following details:\n\nRecipient: ${recipient}\nSubject: ${subject}\nContext: ${context}\n\nTone Instructions: ${toneInstructions}\n\nFormat the email properly with:\n- An appropriate greeting\n- A clear body that addresses the context\n- A professional closing\n- Do not include a signature line (the user will add their own)\n\nWrite only the email content, nothing else.`;\n\nreturn {\n json: {\n prompt: prompt,\n recipient: recipient,\n subject: subject,\n tone: tone\n }\n};"
},
"typeVersion": 2
},
{
"id": "a34dcc52-0851-406d-8197-e47458bba309",
"name": "OpenAI 채팅 모델",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
1072,
496
],
"parameters": {
"model": "gpt-3.5-turbo",
"options": {
"maxTokens": 500,
"temperature": 0.7
}
},
"credentials": {
"openAiApi": {
"id": "N0CW82ghPMjVVpjB",
"name": "OpenAi account"
}
},
"typeVersion": 1
},
{
"id": "cffb3447-a441-4c94-9eb4-bdada01d4124",
"name": "이메일 생성",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
1104,
288
],
"parameters": {
"text": "={{ $json.prompt }}",
"options": {},
"promptType": "define"
},
"typeVersion": 2.2
},
{
"id": "e35fba09-e164-4333-9caa-5928f0f028dc",
"name": "출력 형식 지정",
"type": "n8n-nodes-base.set",
"position": [
1408,
288
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "email-body",
"name": "email_body",
"type": "string",
"value": "={{ $json.output }}"
},
{
"id": "email-subject",
"name": "subject",
"type": "string",
"value": "={{ $('Extract Form Data').item.json.subject }}"
},
{
"id": "email-tone",
"name": "tone",
"type": "string",
"value": "={{ $('Extract Form Data').item.json.tone }}"
},
{
"id": "email-recipient",
"name": "recipient",
"type": "string",
"value": "={{ $('Extract Form Data').item.json.recipient }}"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "7b0de931-82fa-46f6-aaa2-565c41bfceb5",
"name": "생성된 이메일 표시",
"type": "n8n-nodes-base.form",
"position": [
1632,
288
],
"webhookId": "email-completion",
"parameters": {
"options": {},
"operation": "completion",
"completionTitle": "✅ Email Generated Successfully!",
"completionMessage": "=**Subject:** {{ $json.subject }}\n\n**Tone:** {{ $json.tone }}\n\n**Recipient:** {{ $json.recipient }}\n\n---\n\n{{ $json.email_body }}\n\n---\n\n*Copy the email above and add your signature before sending.*"
},
"typeVersion": 1
},
{
"id": "c5bc8234-00b1-4af0-a2e4-f6b9a547aaf0",
"name": "주요 설명",
"type": "n8n-nodes-base.stickyNote",
"position": [
-592,
-128
],
"parameters": {
"color": 5,
"width": 844,
"height": 1033,
"content": "\n\n## AI Email Generator with Tone Selection\n**Made by [Biznova](https://www.biznova.tech/en)**\n **on [Tiktok](https://www.tiktok.com/@biznova_tech)**\n\n\n\n### 📧 What This Does\nThis workflow creates a professional email generator that allows users to:\n- Choose from multiple tones (Professional, Friendly, Formal, Casual)\n- Input recipient details, subject, and context\n- Generate a complete, well-formatted email using AI\n\n### 👥 Who's It For\n- Business professionals who need to write emails quickly\n- Customer support teams responding to inquiries\n- Sales teams crafting outreach messages\n- Anyone who wants help writing professional emails\n\n### 🎯 How It Works\n1. User fills out a form with email details and selects a tone\n2. The workflow processes the input and creates an AI prompt\n3. OpenAI generates a complete email based on the tone\n4. The formatted email is displayed for the user to copy\n\n### ⚙️ Setup Requirements\n- OpenAI API key (get one at https://platform.openai.com)\n- n8n instance (cloud or self-hosted)\n\n### 🚀 How to Use\n1. Set up your OpenAI credentials in the \"OpenAI Chat Model\" node\n2. Activate the workflow\n3. Share the form URL with users\n4. Users fill out the form and receive a generated email instantly"
},
"typeVersion": 1
},
{
"id": "daec94b3-1af5-4305-baca-75a2b05bdc34",
"name": "설정 지침",
"type": "n8n-nodes-base.stickyNote",
"position": [
272,
512
],
"parameters": {
"color": 4,
"width": 396,
"height": 457,
"content": "### 🔧 Setup Steps\n\n**1. OpenAI API Key**\n - Go to https://platform.openai.com/api-keys\n - Create a new API key\n - Add it to the \"OpenAI Chat Model\" node credentials\n\n**2. Customize Tones (Optional)**\n - Edit the \"Build AI Prompt\" node\n - Modify the tone instructions to match your needs\n - Add new tones to the form dropdown\n\n**3. Adjust AI Settings (Optional)**\n - In \"OpenAI Chat Model\" node:\n - Change model (gpt-4 for better quality)\n - Adjust temperature (0.5-0.9)\n - Modify max tokens for longer/shorter emails\n\n**4. Test the Workflow**\n - Click \"Test workflow\" button\n - Fill out the form\n - Check the generated email\n\n**5. Share the Form**\n - Activate the workflow\n - Copy the form URL\n - Share with your team or customers"
},
"typeVersion": 1
},
{
"id": "fc3da369-ac70-420d-bcf4-aca4c1eb9b6d",
"name": "1단계",
"type": "n8n-nodes-base.stickyNote",
"position": [
384,
176
],
"parameters": {
"color": 7,
"width": 218,
"height": 98,
"content": "**Step 1:** User Input\nForm collects email details and tone preference"
},
"typeVersion": 1
},
{
"id": "fa8e49fc-63bc-4df2-8d11-0124509d233a",
"name": "2단계",
"type": "n8n-nodes-base.stickyNote",
"position": [
608,
176
],
"parameters": {
"color": 7,
"width": 218,
"height": 98,
"content": "**Step 2:** Extract & Organize\nPrepare data for AI processing"
},
"typeVersion": 1
},
{
"id": "7574b96c-cff4-42c9-a128-bf82a9b971d0",
"name": "3단계",
"type": "n8n-nodes-base.stickyNote",
"position": [
816,
176
],
"parameters": {
"color": 7,
"width": 218,
"height": 98,
"content": "**Step 3:** Build Prompt\nCreate AI instructions based on selected tone"
},
"typeVersion": 1
},
{
"id": "2c9c5651-cb91-447a-9b27-5d2cf72142d0",
"name": "4단계",
"type": "n8n-nodes-base.stickyNote",
"position": [
1056,
176
],
"parameters": {
"color": 7,
"width": 218,
"height": 98,
"content": "**Step 4:** AI Generation\nOpenAI creates the email content"
},
"typeVersion": 1
},
{
"id": "1c68f2f6-f826-4798-9ffe-64653475122f",
"name": "5단계",
"type": "n8n-nodes-base.stickyNote",
"position": [
1280,
176
],
"parameters": {
"color": 7,
"width": 258,
"height": 98,
"content": "**Step 5:** Format & Display\nShow the generated email to the user"
},
"typeVersion": 1
},
{
"id": "8992c076-cc45-48f4-af4c-494622cb72cc",
"name": "API 주요 참고사항",
"type": "n8n-nodes-base.stickyNote",
"position": [
1136,
624
],
"parameters": {
"color": 3,
"height": 80,
"content": "⚙️ **Configure Your API Key Here**\nAdd your OpenAI credentials"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "a7bf2666-fe9a-4709-87d6-e6f8874f169f",
"connections": {
"e35fba09-e164-4333-9caa-5928f0f028dc": {
"main": [
[
{
"node": "7b0de931-82fa-46f6-aaa2-565c41bfceb5",
"type": "main",
"index": 0
}
]
]
},
"cffb3447-a441-4c94-9eb4-bdada01d4124": {
"main": [
[
{
"node": "e35fba09-e164-4333-9caa-5928f0f028dc",
"type": "main",
"index": 0
}
]
]
},
"fd094524-76b1-45cd-ac72-402aefc39ff9": {
"main": [
[
{
"node": "cffb3447-a441-4c94-9eb4-bdada01d4124",
"type": "main",
"index": 0
}
]
]
},
"336e7273-30ca-4800-a8b2-01eaadaa0e32": {
"main": [
[
{
"node": "fd094524-76b1-45cd-ac72-402aefc39ff9",
"type": "main",
"index": 0
}
]
]
},
"a34dcc52-0851-406d-8197-e47458bba309": {
"ai_languageModel": [
[
{
"node": "cffb3447-a441-4c94-9eb4-bdada01d4124",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"a7d25cbb-f1f1-451c-bb89-7dcfaa5f8915": {
"main": [
[
{
"node": "336e7273-30ca-4800-a8b2-01eaadaa0e32",
"type": "main",
"index": 0
}
]
]
},
"7b0de931-82fa-46f6-aaa2-565c41bfceb5": {
"main": [
[]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 콘텐츠 제작, 멀티모달 AI
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
AI DJ: Linkup와 GPT4 기반 텍스트-스포티파이 플레이리스트 생성기
AI DJ: Linkup와 GPT4 기반 텍스트-스포티파이 플레이리스트 생성기
Set
Form
Spotify
+
Set
Form
Spotify
17 노드Guillaume Duvernay
콘텐츠 제작
Airtop, GPT-4 Mini 및 Gmail을 사용한 웹사이트 UX 및 SEO 품질 분석
Airtop, GPT-4 Mini 및 Gmail을 사용하여 웹사이트 UX 및 SEO 품질 분석
Set
Code
Html
+
Set
Code
Html
33 노드LukaszB
콘텐츠 제작
WordPress 블로그 자동화 프로페셔널 에디션(심층 연구) v2.1 마켓
GPT-4o, Perplexity AI 및 다국어 지원을 사용한 SEO 최적화 블로그 생성 자동화
If
Set
Xml
+
If
Set
Xml
125 노드Daniel Ng
콘텐츠 제작
OpenAI, ElevenLabs 및 Fal.ai를 사용한 비디오, 팟캐스트 및 ASMR용 바이럴 콘텐츠 제작 자동화
OpenAI, ElevenLabs 및 Fal.ai를 사용한 비디오, 팟캐스트 및 ASMR용 바이럴 콘텐츠 제작 자동화
Set
Code
Wait
+
Set
Code
Wait
97 노드Adam Crafts
콘텐츠 제작
OpenAI와 Firecrawl로 제품 URL에서 AI 생성 Meta 광고 캠페인 생성
OpenAI와 Firecrawl을 통해 제품 URL로 AI 생성 Meta 광고 캠페인 생성
If
Set
Code
+
If
Set
Code
40 노드Adam Crafts
콘텐츠 제작
장문의 문서 생성
GPT-5와 Google Docs를 통해 간단한 제목에서 장문 문서 생성
Set
Form
Split Out
+
Set
Form
Split Out
14 노드Nghia Nguyen
콘텐츠 제작
워크플로우 정보
난이도
중급
노드 수15
카테고리2
노드 유형7
저자
Biznova
@biznovaAutomating your biz, one workflow at a time. I build and share powerful n8n workflows to save you hours and boost productivity. All workflows are completely free. Streamline your operations with no-code.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유