candidate mailer
This commit is contained in:
19
app/mailers/candidate_mailer.rb
Normal file
19
app/mailers/candidate_mailer.rb
Normal 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
|
Reference in New Issue
Block a user