Procházet zdrojové kódy

Workaround to send the email with securely configured servers

Brendan Abolivier před 8 roky
rodič
revize
c4b2f1750c
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2
    1
      server.js

+ 2
- 1
server.js Zobrazit soubor

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