diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-04-15 19:24:49 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-04-22 11:44:57 +0200 |
commit | a798a714d3fb950c5e646b395e225cf84e5be582 (patch) | |
tree | a8721985655dffdd96737e42c57b373056288ee7 | |
parent | 1e2eb28a8dc2fe4cbcd1ffa17fc5f7d778c39d90 (diff) | |
download | server-a798a714d3fb950c5e646b395e225cf84e5be582.tar.gz |
Don't include body in message notifications.
-rw-r--r-- | server.js | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -680,7 +680,7 @@ app.post('/message/send', must_be_logged_in, function (req, res) { } let info = MESSAGE_SEND.run(req.user.user_id, to_user.user_id, subject, body); if (to_user.notify) - mail_new_message(to_user, info.lastInsertRowid, req.user.name, subject, body) + mail_new_message(to_user, info.lastInsertRowid, req.user.name) res.redirect('/inbox'); }); @@ -1495,12 +1495,10 @@ function mail_password_reset_token(user, token) { } } -function mail_new_message(user, msg_id, msg_from, msg_subject, msg_body) { +function mail_new_message(user, msg_id, msg_from) { if (mailer) { let subject = "You have a new message from " + msg_from + "."; - let body = "Subject: " + msg_subject + "\n\n" + - msg_body + "\n\n--\n" + - "You can reply to this message at:\n" + + let body = "Read the message here:\n" + SITE_URL + "/message/read/" + msg_id + "\n\n"; console.log("SENT MAIL:", mail_addr(user), subject); mailer.sendMail({ from: MAIL_FROM, to: mail_addr(user), subject: subject, text: body }, mail_callback); |