Node-red-node-email: set ReplyTo address

This is a feature request: I'd like to see the possibility to add a ReplyTo address to an outgoing email using node-red-node-email.

If I understand correctly this is part of the email header parameters, which currently node-red-node-email does not support.

You can set:

msg.replyTo

among others:

sendopts.cc = msg.cc;
sendopts.bcc = msg.bcc;
sendopts.inReplyTo = msg.inReplyTo;
sendopts.replyTo = msg.replyTo;
sendopts.references = msg.references;
1 Like