Anyone has any idea on how to save an email to a file readable by outlook instead of sending it?
You can create .eml file which can be opened in Outlook with the Microsoft Outlook node. Create a draft message with your content, and download the message’s MIME Content with the draft’s ID.
1 Like
I dont seem to have an “Microsoft Outlook” node, Where can i find it?
It was release in the last version
2 Likes
Another way to do that is building the EML file manually (or using an external library such as https://www.npmjs.com/package/eml-format) with a Function node.
EML structure is very simple, so if you don’t have to attach files or use multiple content-types, it’s easy to build:
To: Recipient <[email protected]>
Subject: Email Subject
From: Sender <[email protected]>
Content-Type: text/plain; charset=utf-8
Message Body
2 Likes