我正在尝试使用我的节点应用中的库emailjs
发送邮件。除了我无法弄清楚如何在配置中设置“reply to
”属性之外,一切正常这是我的代码
var email1 = require(node_path + "emailjs/email");
var server1 = email1.server.connect(mail_sever_conf);
//prepare the message
var msg1 = {
from : 'myfrommail@gmail.com',
to:'tomailid@gmail.com',
subject: 'My App mail subject',
text : 'Some mail content',
replyTo : 'notification@myapp.com' //This is what I tried
};
//send the email
server1.send(msg1, function(err, message) { console.log(err || message); });
我也不知道如何在github page中设置它,有人可以帮助我吗?
答案 0 :(得分:1)
尝试使用它:
reply-to
https://github.com/eleith/emailjs/blob/master/smtp/message.js 行:93
他们只是作为标题传递。所以它应该有用。
在项目提出的问题中解决/评论了这个问题:https://github.com/eleith/emailjs/issues/54