Explorar el Código

Workaround to send the email with securely configured servers

Brendan Abolivier hace 8 años
padre
commit
c4b2f1750c
Firmado por: Brendan Abolivier <contact@brendanabolivier.com> ID clave GPG: 8EF1500759F70623
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2
    1
      server.js

+ 2
- 1
server.js Ver fichero

@@ -85,7 +85,8 @@ app.post('/send', function(req, res, next) {
85 85
     // - parameters for sending the mail(s)
86 86
     let params = {
87 87
         subject: req.body.subj,
88
-        from: req.body.name + ' <' + req.body.addr + '>',
88
+        from: req.body.name + '<' + settings.mailserver.user + '>'
89
+        replyTo: req.body.name + ' <' + req.body.addr + '>',
89 90
         html: req.body.text
90 91
     };
91 92