我最近开始编写我的第一个node.js。然而,我发现我无法创建一个联系我的形式,直接发送到我的电子邮件,因为我找不到任何模块从节点,能够发送电子邮件。
有人知道node.js的电子邮件库或示例联系表单脚本吗?
我最近开始编写我的第一个node.js。然而,我发现我无法创建一个联系我的形式,直接发送到我的电子邮件,因为我找不到任何模块从节点,能够发送电子邮件。
有人知道node.js的电子邮件库或示例联系表单脚本吗?
当前回答
@JimBastard接受的答案似乎是过时的,我看了一下,那个mailer库已经超过7个月没有碰过了,列出了几个bug,并且不再在npm中注册。
Nodemailer当然看起来是最好的选择,但是在这个线程的其他答案中提供的url都是404'ing。
Nodemailer声称支持简单的插件到gmail, hotmail等,也有非常漂亮的文档。
其他回答
你肯定想使用https://github.com/niftylettuce/node-email-templates,因为它支持nodemailer/postmarkapp,并内置了漂亮的异步电子邮件模板支持。
成熟,使用简单,如果简单还不够的话,有很多功能: Nodemailer: https://github.com/andris9/nodemailer(请注意正确的url!)
使用nodemailer模块发送电子邮件的完整代码
var mailer = require("nodemailer");
// Use Smtp Protocol to send Email
var smtpTransport = mailer.createTransport("SMTP",{
service: "Gmail",
auth: {
user: "gmail_id@gmail.com",
pass: "gmail_password"
}
});
var mail = {
from: "Yashwant Chavan <from@gmail.com>",
to: "to@gmail.com",
subject: "Send Email Using Node.js",
text: "Node.js New world for me",
html: "<b>Node.js New world for me</b>"
}
smtpTransport.sendMail(mail, function(error, response){
if(error){
console.log(error);
}else{
console.log("Message sent: " + response.message);
}
smtpTransport.close();
});
@JimBastard接受的答案似乎是过时的,我看了一下,那个mailer库已经超过7个月没有碰过了,列出了几个bug,并且不再在npm中注册。
Nodemailer当然看起来是最好的选择,但是在这个线程的其他答案中提供的url都是404'ing。
Nodemailer声称支持简单的插件到gmail, hotmail等,也有非常漂亮的文档。
查看emailjs
在浪费了大量时间试图使nodemailer工作与大附件,发现emailjs和快乐的从那时起。
它支持通过使用普通的File对象来发送文件,而不是像nodemailer那样需要巨大的buffer。这意味着您可以将其链接到,例如,将附件从html表单传递到邮件发送器。它还支持排队..
总而言之,不知道nodejitsu ppl为什么选择nodemailer作为他们的版本的基础,emailjs只是更高级。