Apply
Rick Biederer (rbiederer@hotmail.com) Referred me to this job.
”
. “
Name: ” . $applicantName . “
”
. “
Message: ” . $Message . “
“;
// For Email Attachments
move_uploaded_file($_FILES[“attachment”][“tmp_name”],WP_CONTENT_DIR .’/uploads/’.basename($_FILES[‘attachment’][‘name’]));
$attachments = array(WP_CONTENT_DIR .”/uploads/”.$_FILES[“attachment”][“name”]);
add_filter(‘wp_mail_content_type’,create_function(”, ‘return “text/html”; ‘));
if(wp_mail($myEmailAddy, ‘Applying for Pro-E Designer (ref: 626212)’, $meEmail, $headers, $attachments)){
echo ““;
}
else
{
echo “
Can’t send your email.
“;
}
} else {
//Contact form not complete
$myform = “
Submit Your Resume
”
. “
“;
echo $myform;
}
?>