We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abc896b commit ed0fd44Copy full SHA for ed0fd44
nodeMailer.js
@@ -15,11 +15,12 @@ var transport = mail.createTransport({
15
// Now mail structure
16
var mailStructure = {
17
from: 'email@gmail.com',
18
- to: 'reciever@anything.com',
+ to: 'reciever@anything.com', // For multiple recievers, write the emails comma seperated for the key "to:"
19
subject: 'Checking Nodemailer',
20
text: 'You got the meassage?'
21
};
22
23
+
24
// Everything is ready, just send the mail
25
transport.sendMail(function (err, info){
26
if (err){
0 commit comments