email node - add msg.priority and msg.headers options

This commit is contained in:
Dave Conway-Jones
2020-10-26 09:08:10 +00:00
parent 3b7fb0aa95
commit 07e5d9fd65
4 changed files with 6 additions and 3 deletions

View File

@@ -94,6 +94,8 @@ module.exports = function(RED) {
sendopts.inReplyTo = msg.inReplyTo;
sendopts.replyTo = msg.replyTo;
sendopts.references = msg.references;
sendopts.headers = msg.headers;
sendopts.priority = msg.priority;
}
sendopts.subject = msg.topic || msg.title || "Message from Node-RED"; // subject line
if (msg.hasOwnProperty("envelope")) { sendopts.envelope = msg.envelope; }