nodemailer send multiple emails code example
Example: nodemailer send to multiple recipients
var message = {
from: "[email protected]",
to: "[email protected]",
cc: "[email protected]"
subject: "Message title",
text: "Plaintext version of the message",
html: "<p>HTML version of the message</p>"
};