Advertisement
cmoreira

Trigger email on new CPT

Sep 15th, 2015
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. add_action('draft_to_publish' ,'send_emails_on_new_event');
  2.  
  3. function send_emails_on_new_event($post)
  4. {
  5. if(get_post_type($post->ID) === 'ttshowcase')
  6. {
  7.  
  8. $emails = get_option('admin_email');
  9. $title = wp_strip_all_tags(get_the_title($post->ID));
  10. $url = get_permalink($post->ID);
  11. $message = "Link to testimonial single page: \n{$url}";
  12.  
  13. wp_mail($emails, "New testimonial published: {$title}", $message);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement