Skip to content

Instantly share code, notes, and snippets.

@danjjohnson
Forked from bryceadams/gist:ee0a1c65d8ecf6015bb6
Last active January 18, 2017 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danjjohnson/b6af263d896fb34f713a149edee45f52 to your computer and use it in GitHub Desktop.
Save danjjohnson/b6af263d896fb34f713a149edee45f52 to your computer and use it in GitHub Desktop.
WPJM: Send an email to employer when their job is approved.
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');
@kwafoawua
Copy link

Hello Dan I addded this code to my functions.php in theme but it isn't sending any email.
Why?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment