mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Send BCC email to employer when contacting candidates
This commit is contained in:
parent
9b873cfab4
commit
e3a87156a2
2 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
|
@ -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
|
Loading…
Add table
Reference in a new issue