2016-09-08 10:25:33 -05:00
|
|
|
# frozen_string_literal: true
|
2016-08-02 10:08:16 -05:00
|
|
|
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
|