我正在阅读Nodemailer using SMTP or sendmail or Amazon SES,我还发现了更多smtp servers所以我假设除了我的nodemailer应用程序,我必须让其中一个SMTP服务器运行并使我的应用程序连接但有人告诉我,Nodemailer本身就是一个自治(或者可能是一个立场)的SMTP服务器“Nodemailer可以自动发送邮件(没有必要通过服务器/ SMTP服务)”。
所以我再次阅读其文档,我发现Nodemailer传输对象使用nodemailer-smtp-transport模块作为默认值
var transporter = nodemailer.createTransport(smtpTransport(options)) (1)
或(默认情况下使用smtpTransport)
var transporter = nodemailer.createTransport(options) (2)
(我认为这意味着(1)相当于(2))
所以我很兴奋,也许是nodemailer-smtp-transport使Nodemailer成为一个独立的smtp服务器,然后我尝试使用这个代码来定义Nodemailer传输器并让它发送带有sendMail的电子邮件:(让我们称之为 snippet1 )
var transporter = nodemailer.createTransport(smtpTransport({
host: 'localhost',
port: 465,
auth: {
user: 'username',
pass: 'pass'
}
}));
// NB! No need to recreate the transporter object. You can use
// the same transporter object for all e-mails
// setup e-mail data with unicode symbols
var mailOptions = {
from: 'Ahmed Feki ✔ <fekiajob@gmail.com>', // sender address
to: 'fekiajob@yahoo.fr, mido.feki@gmail.com', // list of receivers
subject: 'Hello ✔', // Subject line
text: 'Hello world ✔', // plaintext body
html: '<b>Hello world from nodemailer test ✔</b>' // html body
};
// send mail with defined transport object
transporter.sendMail(mailOptions, function(error, info){
if(error){
return console.log('#### sendMail error : ' + error);
}
console.log('#### Message sent: ' + info.response);
});
当我运行应用程序时出现此错误:
sendMail错误:错误:连接ECONNREFUSED 127.0.0.1:25
所以我决定使用这段代码在同一个应用程序中使用smtp-server:
var SMTPServer = require('smtp-server').SMTPServer;
var server = new SMTPServer({
onConnect: function(session, callback){
if(session.remoteAddress === '127.0.0.1'){
return callback(new Error('No connections from localhost allowed'));
}
return callback(); // Accept the connection
},
onError:function(err){
console.log('Error onError %s', err.message);
}
});
/*
onError wasn't mentioned on the documentation i just wrote it myself
as to replace the error on listener :
server.on('error', function(err){
console.log('Error %s', err.message);
});
and i don't know if it would work or not.. i actually kept both of them and just modified the log for i can know from where it would come.
*/
server.listen(465, onConnectCb);
并且在onConnectCb定义中(在上面的最后一行中)我写了所有 snippet1 的代码并且结果更好,因为现在我得到了以下日志:
[2015-11-02 15:33:11] INFO: Connection from ::ffff:127.0.0.1]
[2015-11-02 15:33:11] DEBUG: S: 220 Fekis-PC ESMTP
[2015-11-02 15:33:11] DEBUG: C: EHLO [127.0.0.1]
[2015-11-02 15:33:11] DEBUG: S: 250-OK: Nice to meet you [::ffff:127.0.0.1]
[2015-11-02 15:33:11] DEBUG: [mhJFwLqR43aX] C: STARTTLS
[2015-11-02 15:33:11] DEBUG: [mhJFwLqR43aX] S: 220 Ready to start TLS
[2015-11-02 15:33:11] INFO: [mhJFwLqR43aX] Connection upgraded to TLS
#### sendMail error : Error: self signed certificate
[2015-11-02 15:33:11] INFO: Connection closed to [::ffff:127.0.0.1]
即使电子邮件没有发送也好得多,因为它仍然有错误
'自签名证书'
我认为这是因为我仍然没有在SMTPServer对象中设置密钥和证书作为选项(因为我仍然不知道如何获取它们)。
var server = new SMTPServer({
/*secure: true,
key: fs.readFileSync('private.key'),
cert: fs.readFileSync('server.crt')*/
});
所以我问这个问题是为了确认Nodemailer不能是一个独立的SMTP服务器。
答案 0 :(得分:0)
Nodemailer本身不作为服务器,但它能够使用直接传输方法https://github.com/andris9/nodemailer-direct-transport
在没有中继SMTP的情况下发送邮件不建议在没有中继的情况下发送邮件,因为被拒绝或被放入垃圾邮件文件夹的可能性要高得多,因为发送主机可能不被接收主机信任