The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "New email -> Slack alert",
"nodes": [
{
"name": "On new email",
"type": "n8n-nodes-base.emailReadImap",
"parameters": {
"mailbox": "INBOX",
"postProcessAction": "read"
},
"position": [
240,
300
]
},
{
"name": "Is from VIP?",
"type": "n8n-nodes-base.if",
"parameters": {
"conditions": {
"string": [
{
"value1": "={{$json.from}}",
"value2": "vip@client.com"
}
]
}
},
"position": [
520,
300
]
},
{
"name": "Notify team",
"type": "n8n-nodes-base.slack",
"parameters": {
"channel": "#sales",
"text": "New VIP email received"
},
"position": [
820,
220
]
}
],
"connections": {
"On new email": {
"main": [
[
{
"node": "Is from VIP?",
"type": "main",
"index": 0
}
]
]
},
"Is from VIP?": {
"main": [
[
{
"node": "Notify team",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
New email -> Slack alert. Uses emailReadImap, slack. Manual trigger; 3 nodes.
Source: https://github.com/mohashimgesm-crypto/syntroflow/blob/37b55d80331a1793cd2beffca1b48a7e6c0bb94e/examples/n8n-sample.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
If you are a postmaster or you manage email server, you can set up DKIM and SPF records to ensure that spoofing your email address is hard. On your domain you can also set up DMARC record to receive X
Nathan is a proof of concept framework for creating a personal assistant who can handle various day to day functions for you.
New invoice email notification. Uses emailReadImap, mindee, slack, emailSend. Manual trigger; 6 nodes.
This workflow checks for new emails in a mailbox and if the email body contains the word "invoice" it will send the attachment to Mindee. It then posts a message to Slack to let the team know a paymen
Alrouf AI Integration (Production). Uses googleSheets, chainLlm, lmChatGoogleGemini, outputParserStructured. Manual trigger; 21 nodes.