Skip to content

Commit

Permalink
Merge pull request #162 from zacharyfleck/master
Browse files Browse the repository at this point in the history
Contact System: reply to sender, rather than admin
  • Loading branch information
robotastic authored Sep 15, 2024
2 parents 8411efa + 4b0d26e commit 013a183
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backend/controllers/systems.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ exports.contact_system = async function (req, res) {
Email: admin_email,
Name: site_name + " Admin"
},
ReplyTo: {
Email: req.body.email,
Name: req.body.name
},
To: [{
Email: user.email,
Name: user.firstName + " " + user.lastName
Expand Down

0 comments on commit 013a183

Please sign in to comment.