Hi Node-REDers,
I want to download several email attachments and send them inside one email. Everything works so far.
I just want to ask you guys what the best solution would be to merge or provide several message streams to a single email function-node.
At this time I am sending as much messages with "node.send(msg);" as I provide mail attachments and I merge the messages with a join-node. The problem here is if the last attchments sends the msg.complete earlier than the first messages completes, because it's super lage and needs a bit longer to download, it is lost and does not get caught by the join-node.
You guys probably would do it in a smarter way. I am super happy about any advice and thanks in advance!