admin管理员组

文章数量:1315294

I am using this function to send an email to users after publishing, but I need to add paragraph spaces between text.<br> doesn't seem to work in this context.

function wpse_366380_email_on_publish( $new_status, $old_status, $post ) {

    if ( 'publish' == $new_status && ( 'auto-draft' == $old_status || 'pending' == $old_status ) ) {
    
        $post = get_post($post_id);
        $author = get_userdata($post->post_author);
        $subject = "Post Published: ".$post->post_title."";
        $message = "Hi ".$author->display_name.",
        Your post, \"".$post->post_title."\" has just been published. Ps: Please review the article below <br>
        View post: ".get_permalink( $post_id )."";
        wp_mail($author->user_email, $subject, $message);
        
    }
    
}

本文标签: Paragraph spaces in email template function