Send Email Node Returning Empty Item

I have a workflow that sends out emails using the Send Email node.

It was working fine until I updated to v1.62.5 today.

Now, the Send Email node will send the email as expected but not return a response.

I checked “Always Output Data” just to keep the workflow moving, but I can no longer reference the message ID since there is no response.

Workflow:

Output:

[
  {}
]

Expected Output:

[
  {
    "accepted": [
      "[email protected]"
    ],
    "rejected": [],
    "ehlo": [
      "SIZE 35882577",
      "8BITMIME",
      "AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH",
      "ENHANCEDSTATUSCODES",
      "PIPELINING",
      "CHUNKING",
      "SMTPUTF8"
    ],
    "envelopeTime": 143,
    "messageTime": 2057,
    "messageSize": 2153083,
    "response": "250 2.0.0 OK  1728576795 d75a77b69052e-460428924b7sm6682051cf.79 - gsmtp",
    "envelope": {
      "from": "[email protected]",
      "to": [
        "[email protected]"
      ]
    },
    "messageId": "<[email protected]>"
  }
]

My n8n setup

  • n8n version: 1.62.5
  • Running n8n via: Docker (according to this tutorial)

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

Hey @fundmore,

This will be fixed in 1.62.6 and 1.63.4 which should be available shortly.

New version [email protected] got released which includes the GitHub PR 11238.

Can you update and let me know if it works for you.

@Jon, I just updated to 1.62.6 and it works again.

Thank you for the quick fix!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.