16 lines
501 B
Ruby
16 lines
501 B
Ruby
|
class ReviewerMailer < ApplicationMailer
|
||
|
def candidate_submission candidate
|
||
|
@candidate = candidate
|
||
|
|
||
|
# TODO: candidate.reviewers.map(:email)
|
||
|
if Rails.env.production?
|
||
|
recipients = ["harish.bhavanichikar@perficient.com", "jacob.schulke@perficient.com",
|
||
|
"jennifer.siegfried@perficient.com", "martin.ridgway@perficient.com"]
|
||
|
else
|
||
|
recipients = ["fed.reviewer@mailinator.com"]
|
||
|
end
|
||
|
|
||
|
mail to: recipients, subject: "Skills Assessment Results"
|
||
|
end
|
||
|
end
|