Override E-mail Template
-
Hi there,
This is a very nice plugin!
I’m just a bit of a coding idiot and I would like to remove some of the styling in the e-mail notification that gets sent when an application is submitted.
I read in an earlier thread that you stated:
You can override the applicant email template through by using the following hook(sjb_applicant_email_template).
As someone who has no idea how to do work with hooks and filters, can you possibly help?
I’m looking to change this:
$message = '<div style="width:700px; margin:0 auto; border: 1px solid #95B3D7;font-family:Arial;">' . '<div style="border: 1px solid #95B3D7; background-color:#95B3D7;">' . ' <h2 style="text-align:center;">' . $header_title . '</h2>' . ' </div>' . '<div style="margin:10px;">' . '<p>' . date("Y/m/d") . '</p>' . '<p>';
To this:
$message = '<div style="width:600px; margin:0 auto; border: 1px solid #ffffff;font-family:Arial;">' . '<div style="border: 1px solid #ffffff; background-color:#ffffff;">' . ' <h2 style="text-align:center;">' . $header_title . '</h2>' . ' </div>' . '<div style="margin:10px;">' . '<p>' . date("Y/m/d") . '</p>' . '<p>';
I know I need to do this in my themes functions.php, but I have no idea how to do this.
Can you possibly help?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Override E-mail Template’ is closed to new replies.