Nodemailer: Error: No recipients defined] code: 'EENVELOPE'

Created on 31 Jan 2015  路  1Comment  路  Source: nodemailer/nodemailer

Error: No recipients defined] code: 'EENVELOPE'

var SMTP = nodemailer.createTransport(smtpTransport({
host: 'smtp.xxxx.xxx',
port: '25', // Secure SSL (465) Secure TLS (587)
secureConnection: false,
name: 'Notifications',
ignoreTLS: false,
auth: {
user: config.AuthConfig.nodemailer.username,
pass: config.AuthConfig.nodemailer.password
}
}));

Most helpful comment

EENVELOPE happens when you do not have any valid to, cc or bcc addresses defined.

>All comments

EENVELOPE happens when you do not have any valid to, cc or bcc addresses defined.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

molerat619 picture molerat619  路  3Comments

pranavpunjabi picture pranavpunjabi  路  3Comments

thanhthang20 picture thanhthang20  路  4Comments

mohammedSlimani picture mohammedSlimani  路  4Comments

RobertoDieguez picture RobertoDieguez  路  4Comments