Send email to candidate when resume is approved – Not Function
-
Hello!
I’ve added a snippet, the “Send email to candidate when sum is approved” with the “Code Snippets” plugin, but it is not working. Emails are not being sent notifying the approval of the resumes. https://wpjobmanager.com/customization-snippets/
function resume_published_send_email($post_id) {
$post = get_post($post_id);
$author = get_userdata($post->post_author);$message = ”
Hi “.$author->display_name.”,
Your resume, “.$post->post_title.” has just been approved at “.get_permalink( $post_id ).”. Well done!
“;
wp_mail($author->user_email, “Your resume is online”, $message);
}
add_action(‘publish_resume’, ‘resume_published_send_email’);The page I need help with: [log in to see the link]
- The topic ‘Send email to candidate when resume is approved – Not Function’ is closed to new replies.