我有一个自定义的帖子类型“empresa”,并希望在删除帖子类型(移动到垃圾箱)时发送电子邮件。
我在下面为我的帖子提供了这个功能,我如何使用我的帖子类型“empresa”?
add_action("trash_post", "my_awesome_publication_notification");
function my_awesome_publication_notification($post_id) {
$post = get_post($post_id);
$author = get_userdata($post->post_author);
$author_email = get_post_meta( $post->ID , \'empresa_contato_email\' , true );
$email_subject = "A Sua Empresa foi aprovada!";
ob_start();
include("email_header.php");
?>
<p>
Hi, <?php echo $author->display_name ?>. I\'ve just published one of your articles
(<?php echo $post->post_title ?>) on MyAwesomeWebsite!
</p>
<p>
If you\'d like to take a look, <a href="<?php echo get_permalink($post->ID) ?>">click here</a>.
I would appreciate it if you could come back now and again to respond to some comments.
</p>
<?php
include("email_footer.php");
$message = ob_get_contents();
ob_end_clean();
wp_mail($author_email, $email_subject, $message);
}