candidate mailer

This commit is contained in:
Mark Moser
2016-08-02 10:08:16 -05:00
parent f7ec6ee84f
commit 78238e6d72
10 changed files with 161 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
class CandidateMailer < ApplicationMailer
def welcome candidate
@candidate = candidate
mail to: @candidate.email, subject: "Perficient Digital - Skills Assessment Test"
end
def reminder candidate
@candidate = candidate
mail to: @candidate.email, subject: "Perficient Digital - Skills Assessment Test"
end
def submitted candidate
@candidate = candidate
mail to: @candidate.email, subject: "Perficient Digital - Skills Assessment Test"
end
end