mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
25 lines
No EOL
972 B
CoffeeScript
25 lines
No EOL
972 B
CoffeeScript
config = require '../../server_config'
|
|
winston = require 'winston'
|
|
mail = require '../commons/mail'
|
|
|
|
module.exports.setup = (app) ->
|
|
app.post '/contact', (req, res) ->
|
|
winston.info "Sending mail from #{req.body.email} saying #{req.body.message}"
|
|
if config.isProduction
|
|
options = createMailOptions req.body.email, req.body.message, req.user
|
|
mail.transport.sendMail options, (error, response) ->
|
|
if error
|
|
winston.error "Error sending mail: #{error.message or error}"
|
|
else
|
|
winston.info "Mail sent successfully. Response: #{response.message}"
|
|
return res.end()
|
|
|
|
createMailOptions = (sender, message, user) ->
|
|
# TODO: use email templates here
|
|
options =
|
|
from: config.mail.username
|
|
to: config.mail.username
|
|
replyTo: sender
|
|
subject: "[CodeCombat] Feedback - #{sender}"
|
|
text: "#{message}\n\nUsername: #{user.get('name') or 'Anonymous'}\nID: #{user._id}"
|
|
#html: message.replace '\n', '<br>\n' |