-
-
Save danjjohnson/b6af263d896fb34f713a149edee45f52 to your computer and use it in GitHub Desktop.
WPJM: Send an email to employer when their job is approved.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function listing_published_send_email($post_id) { | |
if( 'job_listing' != get_post_type( $post_id ) ) { | |
return; | |
} | |
$post = get_post($post_id); | |
$author = get_userdata($post->post_author); | |
$message = " | |
Hi ".$author->display_name.", | |
Your listing, ".$post->post_title." has just been approved at ".get_permalink( $post_id ).". Well done! | |
"; | |
wp_mail($author->user_email, "Your job listing is online", $message); | |
} | |
add_action('pending_to_publish', 'listing_published_send_email'); | |
add_action('pending_payment_to_publish', 'listing_published_send_email'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello Dan I addded this code to my functions.php in theme but it isn't sending any email.
Why?