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