用户在wordpress中提交帖子后发送邮件

时间:2018-12-20 13:19:23

标签: php wordpress email


在我的网站上,用户可以通过普通表格提交帖子。
我保存的PHP变量是:

$usersarray = store the mail of the user
$postId = store the ID of the submitted post

提交的帖子会自动输入“ 草稿”。
我想在他的帖子变为“ 已发布”时自动发送邮件,该怎么办?

当然,这必须与不同的用户和提交的不同帖子一起使用,而不仅仅是最后一个。 (每个用户都提交了他的帖子)

感谢您的咨询。

1 个答案:

答案 0 :(得分:4)

使用publish_post钩子,该钩子是在帖子更新且其新状态为“发布”时触发的动作。

  

在文章发表时通过wp_mail()发送电子邮件给帖子作者   已发布。

function post_published_notification( $ID, $post ) {
    $author = $post->post_author; /* Post author ID. */
    $name = get_the_author_meta( 'display_name', $author );
    $email = get_the_author_meta( 'user_email', $author );
    $title = $post->post_title;
    $permalink = get_permalink( $ID );
    $edit = get_edit_post_link( $ID, '' );
    $to[] = sprintf( '%s <%s>', $name, $email );
    $subject = sprintf( 'Published: %s', $title );
    $message = sprintf ('Congratulations, %s! Your article “%s” has been published.' . "\n\n", $name, $title );
    $message .= sprintf( 'View: %s', $permalink );
    $headers[] = '';
    wp_mail( $to, $subject, $message, $headers );
}
add_action( 'publish_post', 'post_published_notification', 10, 2 );

编辑:

如@Stender在下面的评论中所建议。

您也可以使用

draft_to_publish钩子将完美满足您的需求。