Ver código fonte

Workaround to send the email with securely configured servers

Brendan Abolivier 8 anos atrás
pai
commit
c4b2f1750c
Assinado por: Brendan Abolivier <contact@brendanabolivier.com> ID da chave GPG: 8EF1500759F70623
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2
    1
      server.js

+ 2
- 1
server.js Ver arquivo

@@ -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