Hello community. This is my first question here. I have only been using N8N for a few months but have been coding for many years. THANK YOU N8N FOR AN EXCELLENT PLATFORM!! J
Here is outline of my dilemma:
· I am working in Cloud.
· I have two different workflows.
· Both workflows work perfectly if I trigger them manually
· Workflow #1 is always triggered automatically using Credential #1 when it is active as expected
· Workflow #2 is never triggered automatically using Credential #2 when it is active
· Email is Smartermail and part of web hosting I use at ``internetmailserver.net``. Therefore I do not have access to the email server.
This is what I tried and failed: (to see if it was maybe an email/credential issue)
· Point Workflow #1 to Credential #2
· Point Workflow #2 to Credential #1
Here is the start of JSON for the Workflow #1 through Email Trigger (works):
{
"name": "Upload_PO",
"nodes": [
{
"parameters": {
"postProcessAction": "nothing",
"downloadAttachments": true,
"options": {}
},
"id": "44bb93be-6bba-4b71-87ec-139e81d12d5e",
"name": "Email Trigger (IMAP)",
"type": "n8n-nodes-base.emailReadImap",
"position": [
-2620,
900
],
"typeVersion": 2,
"credentials": {
"imap": {
"id": "vKMkG4ExvZhaVdvQ",
"name": "IMAP account 2"
}
}
},
Here is the start of JSON for the Workflow #1 through Email Trigger (does not trigger):
{
"name": "My workflow 2",
"nodes": [
{
"parameters": {
"postProcessAction": "nothing",
"downloadAttachments": true,
"options": {}
},
"type": "n8n-nodes-base.emailReadImap",
"typeVersion": 2,
"position": [
-580,
-120
],
"id": "47595994-bce9-4f70-8d86-e4e4caeca3f0",
"name": "Email Trigger (IMAP)",
"credentials": {
"imap": {
"id": "0HtFpofYZ8qialTs",
"name": "IMAP account 3"
}
}
},
(I am not sure why keys are in different order but it should not matter.)
I know I saw a link for instructions on how to upload the flow for debugging. I cannot find that again or I would upload here.
I am happy to try anything the community might suggest.
