candidate mailer
This commit is contained in:
27
app/views/candidate_mailer/reminder.html.erb
Normal file
27
app/views/candidate_mailer/reminder.html.erb
Normal file
@ -0,0 +1,27 @@
|
||||
<table cellspacing="0" cellpadding="0" border="0" style="width:100%; font-family:sans-serif;">
|
||||
<tr>
|
||||
|
||||
<td style="background-color:#cc0c0d; color:#ffffff; padding:15px 20px;">
|
||||
PERFICIENT DIGITAL - Skills Assessment Test
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
<td style="padding:50px;">
|
||||
<p>Dear <strong><%= @candidate.name %></strong>,</p>
|
||||
<p>
|
||||
Thank you for taking the Skills Assessment Test. However, it looks like you have not submitted it
|
||||
yet. If you are having troubles, please reach out to your recruiter:
|
||||
<%= mail_to @candidate.recruiter.email %>
|
||||
</p>
|
||||
<p>
|
||||
You can return to the test here:
|
||||
<%= link_to nil, root_url %>
|
||||
<br>
|
||||
Your test id is: <%= @candidate.test_hash %>
|
||||
</p>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
</table>
|
10
app/views/candidate_mailer/reminder.text.erb
Normal file
10
app/views/candidate_mailer/reminder.text.erb
Normal file
@ -0,0 +1,10 @@
|
||||
PERFICIENT DIGITAL - Skills Assessment Test
|
||||
|
||||
Thank you for taking the Skills Assessment Test. However, it looks like you have not submitted it
|
||||
yet. If you are having troubles, please reach out to your recruiter:
|
||||
<%= @candidate.recruiter.email %>
|
||||
|
||||
You can return to the test here:
|
||||
<%= root_url %>
|
||||
|
||||
Your test id is: <%= @candidate.test_hash %>
|
17
app/views/candidate_mailer/submitted.html.erb
Normal file
17
app/views/candidate_mailer/submitted.html.erb
Normal file
@ -0,0 +1,17 @@
|
||||
<table cellspacing="0" cellpadding="0" border="0" style="width:100%; font-family:sans-serif;">
|
||||
<tr>
|
||||
|
||||
<td style="background-color:#cc0c0d; color:#ffffff; padding:15px 20px;">
|
||||
PERFICIENT DIGITAL - Skills Assessment Test
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
<td style="padding:50px;">
|
||||
<p>Dear <strong><%= @candidate.name %></strong>,</p>
|
||||
<p>Thank you for taking the Skills Assessment Test. Your recruiter will be in touch.</p>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
</table>
|
5
app/views/candidate_mailer/submitted.text.erb
Normal file
5
app/views/candidate_mailer/submitted.text.erb
Normal file
@ -0,0 +1,5 @@
|
||||
PERFICIENT DIGITAL - Skills Assessment Test
|
||||
|
||||
Dear <%= @candidate.name %>,
|
||||
|
||||
Thank you for taking the Skills Assessment Test. Your recruiter will be in touch.
|
27
app/views/candidate_mailer/welcome.html.erb
Normal file
27
app/views/candidate_mailer/welcome.html.erb
Normal file
@ -0,0 +1,27 @@
|
||||
<table cellspacing="0" cellpadding="0" border="0" style="width:100%; font-family:sans-serif;">
|
||||
<tr>
|
||||
|
||||
<td style="background-color:#cc0c0d; color:#ffffff; padding:15px 20px;">
|
||||
PERFICIENT DIGITAL - Skills Assessment Test
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
<td style="text-align:center; padding:50px;">
|
||||
<h1>Your Candidate ID is <i><%= @candidate.test_hash %></i></h1>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
<td style="padding:15px 20px; background-color:#cdcdcd; text-align:center;">
|
||||
<h4>
|
||||
Please visit <%= link_to nil, root_url %>
|
||||
and enter the above Candidate ID to being your test.
|
||||
</h4>
|
||||
<h5>We will reach back to you once we have evaluated your answers. Good luck!</h5>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
</table>
|
10
app/views/candidate_mailer/welcome.text.erb
Normal file
10
app/views/candidate_mailer/welcome.text.erb
Normal file
@ -0,0 +1,10 @@
|
||||
PERFICIENT DIGITAL - Skills Assessment Test
|
||||
|
||||
Your Candidate ID is <%= @candidate.test_hash %>
|
||||
|
||||
Please visit <%= root_url %>
|
||||
and enter the above Candidate ID to being your test.
|
||||
|
||||
We will reach back to you once we have evaluated your answers.
|
||||
|
||||
Good luck!
|
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<style>
|
||||
/* Email styles need to be inline */
|
||||
<% # Email styles need to be inline %>
|
||||
</style>
|
||||
</head>
|
||||
|
||||
|
Reference in New Issue
Block a user