Customized applicant email notification template
-
Hi everyone,
I encouter difficulties customizing the .php files of the SJB plugin.
I want the email notification (received by applicants) to say “Hi [Firstname]”.For now, it says “Hi Applicant” which is barely ok. Is there any way to replace default* -Applicant- value by the applicant’s firstname since it’s collected in the admin email notification (Applicant Details).
*Looking further in the .php file, this says that Applicant is -else- value.
” // Applicant Email Template.
$message = esc_html__(‘Hi’, ‘simple-job-board’);if (NULL != $applicant_name):
$message .= ‘ ‘ . $applicant_name . ‘,’;
else:
$message .= ‘ ‘ . esc_html__(‘Applicant’, ‘simple-job-board’) . ‘,’;
endif;
”
In other words, how can i link my firstname field (second blank box applicant fills) to this $applicant_name, because right now that doesn’t seem to work on its own 🙂Best regards,
The topic ‘Customized applicant email notification template’ is closed to new replies.