Send BCC email to employer when contacting candidates

This commit is contained in:
Michael Schmatz 2014-06-24 14:35:28 -07:00
parent 9b873cfab4
commit e3a87156a2
2 changed files with 3 additions and 3 deletions

View file

@ -36,7 +36,7 @@ module.exports = class JobProfileContactView extends ContactView
contactMessage.recipientID = @options.recipientID
res = tv4.validateMultiple contactMessage, contactSchema
return forms.applyErrorsToForm @$el, res.errors unless res.valid
contactMessage.message += "\n\n\n\n[CodeCombat says: please let us know if you end up accepting this job. Thanks, #{@options.recipientUserName}!]"
contactMessage.message += "\n\n\n\n[For reference, the recipient's CodeCombat username is #{@options.recipientUserName}!]"
window.tracker?.trackEvent 'Sent Job Profile Message', message: contactMessage
sendContactMessage contactMessage, @$el
$.post "/db/user/#{me.id}/track/contact_candidate"

View file

@ -31,8 +31,8 @@ createMailOptions = (sender, message, user, recipientID, subject, done) ->
if err
log.error "Error looking up recipient to email from #{recipientID}: #{err}" if err
else
options.bcc = options.to
options.bcc = [options.to, sender]
options.to = document.get('email')
done options
else
done options
done options