25 - 毎日の登録概要を自動化
中級
これはEngineering分野の自動化ワークフローで、9個のノードを含みます。主にSet, Slack, Postgres, Telegram, MicrosoftTeamsなどのノードを使用。 PostgreSQL から毎日の新規登録統計を Slack、Teams、Telegram に自動送信
前提条件
- •Slack Bot Token または Webhook URL
- •PostgreSQLデータベース接続情報
- •Telegram Bot Token
カテゴリー
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"name": "25 - Automated Daily Signup Summary",
"nodes": [
{
"id": "9bcb46ca-0694-41ee-b700-1dfa22bdb478",
"name": "Database Config Instructions",
"type": "n8n-nodes-base.stickyNote",
"position": [
-180,
200
],
"parameters": {
"color": 4,
"width": 440,
"height": 580,
"content": "## 1️⃣ Trigger & Data Fetching\n\n⏰ Daily Report Trigger runs every day at 9:00 AM.\n\n*It triggers 🗄️ Fetch Signup Count, which queries the customers table in PostgreSQL to count the number of new signups within the last 24 hours using the created_at timestamp column.*"
},
"typeVersion": 1
},
{
"id": "bf6257e2-a159-42d2-9826-68bf692337b0",
"name": "Messaging Config Instructions",
"type": "n8n-nodes-base.stickyNote",
"position": [
280,
120
],
"parameters": {
"color": 5,
"width": 260,
"height": 660,
"content": "## 2️⃣ Report Preparation\n\n📝 Prepare Report Message formats the results into a ready-to-send message.\n\n*It includes the signup count, report date, and a summary message:\n📊 Daily Signup Report – New signups in last 24h: X*\n"
},
"typeVersion": 1
},
{
"id": "1a8bf7d7-18e7-4b08-947e-6bc189d5a2f5",
"name": "⏰ Daily Report Trigger",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
-120,
420
],
"parameters": {
"rule": {
"interval": [
{
"triggerAtHour": 9
}
]
}
},
"typeVersion": 1.2
},
{
"id": "bf7c0220-7aa2-40b0-b12d-3e4756f07130",
"name": "🗄️ Fetch Signup Count",
"type": "n8n-nodes-base.postgres",
"position": [
100,
420
],
"parameters": {
"query": "-- EDIT: Replace 'users' with your table name and 'created_at' with your timestamp column\nSELECT COUNT(*) as signup_count \nFROM customers \nWHERE created_at >= NOW() - INTERVAL '24 HOURS';",
"options": {},
"operation": "executeQuery"
},
"typeVersion": 2.4
},
{
"id": "998a13b4-e761-47e2-bfac-8b65a3a47dfa",
"name": "📝 Prepare Report Message",
"type": "n8n-nodes-base.set",
"position": [
360,
420
],
"parameters": {
"values": {
"string": [
{
"name": "signup_count",
"value": "={{ $json.signup_count || 0 }}"
},
{
"name": "report_date",
"value": "={{ new Date().toLocaleDateString('en-US', { timeZone: 'UTC', year: 'numeric', month: 'long', day: 'numeric' }) }}"
},
{
"name": "message_text",
"value": "=📊 Daily Signup Report\nNew signups in the last 24h: {{ $json.signup_count || 0 }}"
}
]
},
"options": {}
},
"typeVersion": 2
},
{
"id": "8f165983-aa33-489d-bc3c-827b626cd531",
"name": "💬 Post to Slack",
"type": "n8n-nodes-base.slack",
"position": [
660,
220
],
"parameters": {
"text": "={{ $node['📝 Prepare Report Message'].json.message_text }}",
"channel": "#general",
"attachments": [],
"otherOptions": {}
},
"typeVersion": 1
},
{
"id": "f4130a5a-0473-4e7e-b5cc-00dc33c8775d",
"name": "📢 Send to Teams",
"type": "n8n-nodes-base.microsoftTeams",
"position": [
660,
420
],
"parameters": {
"name": "YOUR_CHANNEL_NAME",
"teamId": "YOUR_TEAM_ID",
"options": {}
},
"typeVersion": 1
},
{
"id": "13930dd0-dd61-4fb9-857b-f2ca484a1c8e",
"name": "📲 Send to Telegram",
"type": "n8n-nodes-base.telegram",
"position": [
660,
620
],
"parameters": {
"text": "={{ $node['📝 Prepare Report Message'].json.message_text }}",
"chatId": "YOUR_TELEGRAM_CHAT_ID",
"additionalFields": {
"appendAttribution": false
}
},
"typeVersion": 1.1
},
{
"id": "7447cbfd-709d-4acc-9f66-68f2914edd21",
"name": "Messaging Config Instructions1",
"type": "n8n-nodes-base.stickyNote",
"position": [
560,
-40
],
"parameters": {
"color": 3,
"width": 360,
"height": 820,
"content": "## 3️⃣ Multi-Channel Notification Delivery\n\n*The prepared message is sent to multiple platforms in parallel:\n\n💬 Post to Slack\n📢 Send to Teams\n📲 Send to Telegram"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"connections": {
"1a8bf7d7-18e7-4b08-947e-6bc189d5a2f5": {
"main": [
[
{
"node": "bf7c0220-7aa2-40b0-b12d-3e4756f07130",
"type": "main",
"index": 0
}
]
]
},
"bf7c0220-7aa2-40b0-b12d-3e4756f07130": {
"main": [
[
{
"node": "998a13b4-e761-47e2-bfac-8b65a3a47dfa",
"type": "main",
"index": 0
}
]
]
},
"998a13b4-e761-47e2-bfac-8b65a3a47dfa": {
"main": [
[
{
"node": "8f165983-aa33-489d-bc3c-827b626cd531",
"type": "main",
"index": 0
},
{
"node": "f4130a5a-0473-4e7e-b5cc-00dc33c8775d",
"type": "main",
"index": 0
},
{
"node": "13930dd0-dd61-4fb9-857b-f2ca484a1c8e",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - エンジニアリング
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
27 - インテリジェントフォロー・エンジン
GPT-4o-mini、HubSpot、Slack、Teams、Telegram を使った販売フォローの自動化
Set
Slack
Hubspot
+
Set
Slack
Hubspot
13 ノードAvkash Kakdiya
その他
OpenAI、Google Sheets、Jina AI、Slackを活用したAI駆動型情報監視
AIベースの情報監視ワークフローで、OpenAI、Google Sheets、Jina AI、Slackを統合
If
Set
Code
+
If
Set
Code
31 ノードDataki
営業
Airtable完全バックアップ
Airtable データベースを S3 にバックアップ
If
Set
Aws S3
+
If
Set
Aws S3
19 ノードAutonomous Work
エンジニアリング
AI駆動型WordPressコンテンツワーキングフロー
OpenAIのGPTを使ってPostgreSQLからWordPressへのブログ投稿を自動化
If
Code
Postgres
+
If
Code
Postgres
12 ノードAvkash Kakdiya
コンテンツ作成
15 - LeadFlow オートメーション
OpenAI GPT-4O、HubSpot、Slack、Google Sheetsを使ってGmailのリードフォローアップを自動化
If
Set
Code
+
If
Set
Code
14 ノードAvkash Kakdiya
AI要約
17 - AI LinkedIn 返信ジェネレーター
LinkedIn のコメントへの GPT-3.5 を使った自動返信と Google Sheets 内での追跡
If
Set
Http Request
+
If
Set
Http Request
13 ノードAvkash Kakdiya
マルチモーダルAI
ワークフロー情報
難易度
中級
ノード数9
カテゴリー1
ノードタイプ7
作成者
Avkash Kakdiya
@itechnotion🚀 Founder of iTechNotion — we build custom AI-powered automation workflows for startups, agencies, and founders. 💡 Specializing in agentic AI systems, content automation, sales funnels, and digital workers. 🔧 14+ years in tech | Building scalable no-code/low-code solutions using n8n, OpenAI, and other API-first tools. 📬 Let’s automate what slows you down.
外部リンク
n8n.ioで表示 →
このワークフローを共有