You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// mail -- send an email
//
// This is the simplest, safest way to send an email. Headers are
// escaped and folded, email addresses are validated, and the body is
// validated and wrapped.
var sys = require('sys'),
mail = require('../lib').Mail({
host: 'smtp.gmail.com',
username: '[email protected]',
password: '**password**'
});
mail.message({
from: '[email protected]',
to: ['[email protected]'],
subject: 'Hello from Node.JS'
})
.body('Node speaks SMTP.')
.send(function(err) {
if (err) throw err;
sys.debug('Sent!');
});
once I run it, I am getting an error: Session already started.
The text was updated successfully, but these errors were encountered:
I copied the example code:
once I run it, I am getting an error:
Session already started.
The text was updated successfully, but these errors were encountered: